Q. What is the correct syntax of if statement in C program?
β
Correct Answer: (A)
if(condition){ }
Explanation: The correct syntax of if statement in C program is:
if(condition){
// code to be executed
}