I\'m teaching myself C++ and I\'m a bit confused about pointers (specifically in the following source code). But first, I proceed with showing you what I know (and then cont
You are asking the right questions as a learner.
Answers:
string is an object, the c_str() essentially returns a pointer to the first
character of the string (C Style)string object
cout prints the string. Also, C++ is smart enough to determine *testing is illegal