Domanda di colloquio di Amazon

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

Risposta di colloquio

Anonimo

21 ott 2011

The pointer is not initialised and the program will crash.

2