Answers

Question and Answer:

  Home  Basic C++ Syntax

⟩ What is Else Syntax in C++?

It can look like this:

if ( TRUE ) {

// Execute these statements if TRUE

}

else {

// Execute these statements if FALSE

}

 224 views

More Questions for you: