What is the syntax for the 'if' statement with multiple conditions in C++?
A. if { condition1 } && { condition2 } { statement; }
B. if { condition1 && condition2 } { statement; }
C. if (condition1 && condition2) { statement; }
D. if (condition1) && (condition2) { statement; }
Answer: Option C

Join The Discussion