std_array.cpp This CPP file replaces the one in the code archive for Chapter 1 (932445c01_code/std_array/std_array.cpp). It contains the below fix for page 22:
#include
#include
using namespace std;
int main()
{
array arr = {9, 8, 7};
cout << "Array size = " << arr.size() << endl;
for (auto i : arr)
cout << i << endl;
return 0;
}