Computer Science, asked by diyaliritik54321, 11 months ago

what is if statement in c language​

Answers

Answered by snehaldeshmukh58
1

Answer:

an 'if' statement in C programming language is − if(boolean_expression) { /* statement(s) will execute if the boolean expression is true */ } If the Boolean expression evaluates to true, then the block of code inside the 'if' statement will be executed.

Similar questions