Void Type and NULL Constant
Overview
void type is a fundamental MQL4 type.void denotes the absence of parameters.NULL Constant
NULL is a predefined constant variable of the void type.NULL are permitted.NULL can also be compared to pointers to objects created with the new operator.Usage Example
// If the string is not initialized, then assign our predefined value to it
if(some_string == NULL) some_string = "empty";
Related Concepts
Previous
arrow_back
Typecasting