InterviewSolution
Saved Bookmarks
| 1. |
Basic Syntax Of Do-while Statement? |
|
Answer» The do-while statement is similar to the while statement but PERFORMS the statements before CHECKING the CONDITION statement. The FOLLOWING is the format for the do-while statement: do { statements } while (condition) The do-while statement is similar to the while statement but performs the statements before checking the condition statement. The following is the format for the do-while statement: do { statements } while (condition) |
|