Pergunta de entrevista da empresa General Atomics

What is the value to a char pointer?

Resposta da entrevista

Sigiloso

28 de jan. de 2025

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'