InterviewSolution
Saved Bookmarks
| 1. |
What is looping? Describe the types of looping with examples. |
| Answer» LOOPING is ONE of the KEY concepts on any programming language. A block of looping statements in C are executed for number of times until the condition BECOMES false. Loops are of 2 types: entry-controlled and exit-controlled. 'C' programming provides US 1) while 2) do-while and 3) for loophope it helps youplease mark me brainliest | |