Computer Science, asked by arabinda80, 10 months ago

Explain the syntax of if___ else statement

Answers

Answered by MusicViking
1

If - then - else......

Answered by sabhyata09
1

Syntax of if else statement: If condition returns true then the statements inside the body of “if” are executed and the statements inside body of “else” are skipped. If condition returns false then the statements inside the body of “if” are skipped and the statements in “else” are executed.

Similar questions