C++ Syntax Question:

What is Else Syntax in C++?

Tweet Share WhatsApp

Answer:

It can look like this:

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

Download Basic C++ Syntax PDF Read All 27 Basic C++ Syntax Questions
Previous QuestionNext Question
What is basic if statement syntax?What is Else If Syntax?