What is conditional statement in c programming

A conditional statement in C programming is a statement that provides the ability to execute certain code only if a specified condition is true. The most common type of conditional statement in C is the "if" statement, which allows you to specify code that should be executed if a given condition is true. Additionally, C also supports the "if else" statement, which allows you to specify code to be executed if the condition is false. Other conditional statements in C include "else if" and "switch" statements. These conditional statements are important for controlling the flow of a program and determining which code should be executed based on certain conditions.