What is Else Syntax in C++?

Submitted by: Muhammad
It can look like this:

if ( TRUE ) {
// Execute these statements if TRUE
}
else {
// Execute these statements if FALSE
}
Submitted by: Muhammad

Read Online C++ Syntax Job Interview Questions And Answers