Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 756 Bytes

false-cpp.md

File metadata and controls

35 lines (28 loc) · 756 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: false (C++)
false (C++)
11/04/2016
false_cpp
false keyword [C++]
cc13aec5-1f02-4d38-8dbf-5473ea2b354f

false (C++)

The keyword is one of the two values for a variable of type bool or a conditional expression (a conditional expression is now a true Boolean expression). For example, if i is a variable of type bool, the i = false; statement assigns false to i.

Example

// bool_false.cpp
#include <stdio.h>

int main()
{
    bool bb = true;
    printf_s("%d\n", bb);
    bb = false;
    printf_s("%d\n", bb);
}
1
0

See also

Keywords