0
NULL
What does the NULL function do in UE4?
1 Respuesta
+ 3
C++ doesn't have a NULL function. It is declared as below or similar system dependent value.
#define NULL 0
This defines a constant value without allocating memory to store it.
What does the NULL function do in UE4?