if Statement in C
The if statement is a decision making statement that allow us to control if a program executes a block of code or not, based on given conditions.
If condition is true, it will execute the block of code.
If condition is false, it will not execute the block of code.
0 Comments