Question d’entretien chez Amazon

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

Réponse à la question d'entretien

Utilisateur anonyme

21 oct. 2011

The pointer is not initialised and the program will crash.

2