Skip to content

Latest commit

 

History

History
62 lines (57 loc) · 1.17 KB

File metadata and controls

62 lines (57 loc) · 1.17 KB
title false (C++) | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-language
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
false_cpp
false
dev_langs
C++
helpviewer_keywords
false keyword [C++]
ms.assetid cc13aec5-1f02-4d38-8dbf-5473ea2b354f
caps.latest.revision 11
author mikeblome
ms.author mblome
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

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