0
what's the difference between new int and NULLL?
3 Antworten
+ 1
new int allicates dynamic memory to heap and null is basically used to indicate or assign null value (that is an empty value) to any variable.
0
Also, you cannot dereference a pointer that points to NULL or nullptr (since C++11).
0
correction to the question...it is a 'NULL' with two 'l' s