Hallo,
I know that in C++ the name of an array is automatically converted into a pointer to the first element of the array.
So, if we have the following array char ca[] = “Hallo world!”;
I can take the first character by dereferencing ca: cout << *ca << endl; //OK, output: H
Now, I want to take the second character, a, in two different ways: