Math, asked by nitin6266, 5 months ago

What is an IF statement? Write its syntax? ​

Answers

Answered by shubhamgariya660
2

Answer:

The syntax of 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