What is the value to a char pointer?
Anonymous
Usually, it is for pointing to a string (usually at the beginning of). i.e. char str[] = "Interview"; char* c = str; cout << *c; // will print the char 'I'
Check out your Company Bowl for anonymous work chats.