What is the difference between false and FALSE?

后端 未结 6 1724
梦谈多话
梦谈多话 2021-02-07 00:22

In many programs, I see statements with the identifiers FALSE and false. Is there any difference between them in the context of C++?

Also in so

6条回答
  •  再見小時候
    2021-02-07 00:43

    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.

提交回复
热议问题