Give syntax and example of If - Else statement
Answers
Answered by
4
If <condition 1 > then print <condition 2>
else print <condition 3>
hope it helps.
else print <condition 3>
hope it helps.
Answered by
0
Answer:
if(statement)
condition 1;
else
condition 2;
Explanation:
Similar questions