1.

Give the syntax of ‘if’ statement.

Answer»

The syntax of if statement is

if (condition)

{

statement 1;

statement 2;

statement n;

}



Discussion

No Comment Found