Pergunta de entrevista da empresa Amazon

What is wrong with this code: int *ptr; *ptr = 7;

Resposta da entrevista

Sigiloso

21 de out. de 2011

The pointer is not initialised and the program will crash.

2