Skip to content

Latest commit

 

History

History
52 lines (45 loc) · 1.21 KB

File metadata and controls

52 lines (45 loc) · 1.21 KB
Error in user YAML: (<unknown>): did not find expected ',' or ']' while parsing a flow sequence at line 11 column 22
---
title: "true (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: ["true_cpp", "true"]
dev_langs: ["C++"]
helpviewer_keywords: ["[""true keyword [C++]""]"]
ms.assetid: 96be2a70-51c3-4250-9752-874d25a5a11e
caps.latest.revision: 12
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"]
---

true (C++)

Syntax

  
      bool-identifier = true ;  
bool-expression logical-operator true ;  

Remarks

This 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). If i is of type bool, then the statement i = true; assigns true to i.

Example

// bool_true.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