comment déclarer un tableau de taille 1

vector<int> arr = {1};   // Initialized with 1 at arr[0] pos.
Viper