About 29,100 results
Open links in new tab
  1. Boolean data type - Wikipedia

    In computer science, the Boolean (sometimes shortened to Bool) is a data type that has one of two possible values (usually denoted true and false) which is intended to represent the two truth values …

  2. bool in C - GeeksforGeeks

    Jan 10, 2025 · The bool in C is a fundamental data type in most that can hold one of two values: true or false. It is used to represent logical values and is commonly used in programming to control the flow …

  3. bool type - C# reference | Microsoft Learn

    Jan 20, 2026 · To perform logical operations with values of the bool type, use Boolean logical operators. The bool type is the result type of comparison and equality operators.

  4. Python Booleans - W3Schools

    Booleans represent one of two values: True or False. In programming you often need to know if an expression is True or False. You can evaluate any expression in Python, and get one of two …

  5. What Is a Boolean? - Computer Hope

    Jun 1, 2025 · In computer science, a boolean or bool is a data type with two possible values: true or false. It is named after the English mathematician and logician George Boole, whose algebraic and …

  6. C语言布尔类型详解(_BOOLbool) - C语言中文网

    C语言布尔类型详解(_BOOL和bool) 布尔类型(Boolean type)是一种表示“真”或“假”的数据类型,在编程中常用于条件判断和逻辑运算。 然而,C语言在早期标准中并没有直接提供布尔类型,而是通过 …

  7. Bool in C Programming (Boolean With Examples)

    What is Bool in C Programming? A boolean in C represents a value that can be either true or false. In traditional C (before C99), there was no specific boolean data type, and programmers used integers, …

  8. BOOL Definition & Meaning - Merriam-Webster

    The meaning of BOOL is dialectal variant of bowl.

  9. What's the difference between "bool" and "bool?"?

    Oct 5, 2016 · The ? symbol after a type is only a shortcut to the Nullable type, bool? is equivalent to Nullable<bool>. bool is a value type, this means that it cannot be null, so the Nullable type basically …

  10. C++ keyword: bool - cppreference.com

    Boolean type: bool. Boolean literals: false, true. Character types: char, char8_t (since C++20), char16_t, char32_t (since C++11), wchar_t. Floating-point types: float, double.