How is if statement different from if……else statement? Explain with suitable
example
Answers
Answered by
7
Answer:
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