C++ Syntax Question:

What is Else Syntax in C++?

Basic C++ Syntax Interview Question
Basic C++ Syntax Interview Question

Answer:

It can look like this:

if ( TRUE ) {
// Execute these statements if TRUE
}
else {
// Execute these statements if FALSE
}


Previous QuestionNext Question
What is basic if statement syntax?What is Else If Syntax?