In many programs, I see statements with the identifiers FALSE and false. Is there any difference between them in the context of C++?
FALSE
false
Also in so
false is a C++ keyword.
FALSE is not defined by the C++ standard. But most compilers have FALSE defined as a preprocessor macro with the value 0.