+ 3
In c++ arrays are equialent with pointer. Both are a sequence in the memory with an adress.
char *p is a char array a.k.a. a string.
p is a string value. you can reach it by its adress like the 1st line or by its value like the 3rd line.
but you cant asign it a char value.



