Examveda

What is the syntax for the 'if-else' statement in C++?

A. if (condition) then { statement; } else { statement; }

B. if { condition } { statement; } else { statement; }

C. if (condition) { statement; } else { statement; }

D. if (condition) { statement; } else statement;

Answer: Option C


Join The Discussion

Related Questions on Control Flow Statements in C plus plus

What is the correct syntax for the 'switch' statement in C++?

A. switch (expression) { case constant1: statement1; case constant2: statement2; }

B. switch (expression) { case constant1: statement1; break; case constant2: statement2; break; default: defaultStatement; }

C. switch (expression) { case constant1: statement1; default: defaultStatement; }

D. None of the above