Conditional statements in C
Conditional statements in C are used to control the flow of the program based on certain conditions. Following are the types of conditional statements in C:
1. if statement:
2. if...else statement
3. else if statement
4. switch statement
Post a Comment