#include using namespace std; int main() { int bucky[5] = {66,75,2,43,99}; // array initialiser list cout << bucky[2] << endl; // the array index starts at 0 so bucky[0] = 66, bucky[1] = 75, and bucky[1] = 2 ... }