Home » C Boolean

C Boolean

In C, Boolean is a data type that contains two types of values, i.e., 0 and 1. Basically, the bool type value represents two types of behavior, either true or false. Here, ‘0’ represents false value, while ‘1’ represents true value.

In C Boolean, ‘0’ is stored as 0, and another integer is stored as 1. We do not require to use any header file to use the Boolean data type in C++, but in C, we have to use the header file, i.e., stdbool.h. If we do not use the header file, then the program will not compile.

Syntax

In the above syntax, bool is the data type of the variable, and variable_name is the name of the variable.

Let’s understand through an example.

In the above code, we have used <stdbool.h> header file so that we can use the bool type variable in our program. After the declaration of the header file, we create the bool type variable ‘x‘ and assigns a ‘false‘ value to it. Then, we add the conditional statements, i.e., if..else, to determine whether the value of ‘x’ is true or not.

Output

The value of x is FALSE  

Boolean Array

Now, we create a bool type array. The Boolean array can contain either true or false value, and the values of the array can be accessed with the help of indexing.

Let’s understand this scenario through an example.

In the above code, we have declared a Boolean type array containing two values, i.e., true and false.

Output

1,0,  

typedef

There is another way of using Boolean value, i.e., typedef. Basically, typedef is a keyword in C language, which is used to assign the name to the already existing datatype.

Let’s see a simple example of typedef.

In the above code, we use the Boolean values, i.e., true and false, but we have not used the bool type. We use the Boolean values by creating a new name of the ‘bool’ type. In order to achieve this, the typedef keyword is used in the program.

The above statement creates a new name for the ‘bool‘ type, i.e., ‘b’ as ‘b’ can contain either true or false value. We use the ‘b’ type in our program and create the ‘x’ variable of type ‘b’.

Output

The value of x is false  

Boolean with Logical Operators

The Boolean type value is associated with logical operators. There are three types of logical operators in the C language:

&&(AND Operator): It is a logical operator that takes two operands. If the value of both the operands are true, then this operator returns true otherwise false

||(OR Operator): It is a logical operator that takes two operands. If the value of both the operands is false, then it returns false otherwise true.

!(NOT Operator): It is a NOT operator that takes one operand. If the value of the operand is false, then it returns true, and if the value of the operand is true, then it returns false.

Let’s understand through an example.

Output

The value of x&&y is 0   The value of x||y is 1   The value of !x is 1   

Next TopicStatic in C

You may also like