InterviewSolution
Saved Bookmarks
| 1. |
Repeat a number using while loop in c language |
|
Answer» ong>Answer: Example 1: while loop When i is 1, the test expression i <= 5 is TRUE. ... Now, i is 2, the test expression i <= 5 is again true. ... This process goes on until i becomes 6. Pls mark me as brain list |
|