+1 vote
in Class 11 by kratos

Give the syntax of ‘if’ statement.

1 Answer

+3 votes
by kratos
 
Best answer

The syntax of if statement is

if (condition)

{

statement 1;

statement 2;

statement n;

}

...