This program illustrates the difference between using v[i] and using v.a(i) for access to the components of a vector v. Press Enter to continue ... Contents of v using v[i]: 1 2 3 4 5 Press Enter to continue ... Contents of v using v.at(i): 1 2 3 4 5 Press Enter to continue ... Now let's look at the value of v[6] (if we can). Press Enter to continue ...