InterviewSolution
Saved Bookmarks
| 1. |
Write note on ifi. else structure? if .. else statement |
|
Answer» The if., else statement provides control to check the true block as well as the false block. Following is the syntax of ‘if.else’ statement. Syntax: if: statements – block 1 else: statements – block 2 |
|