Pregunta de entrevista de Amazon

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

Respuesta de la entrevista

Anónimo

21 oct 2011

The pointer is not initialised and the program will crash.

2