write the use of looping statement
Answers
Answered by
9
Looping statement are the statements execute one or more statement repeatedly several number of times. In C programming language there are three types of loops; while, for and do-while.
Why use loop ?
When you need to execute a block of code several number of times then you need to use looping concept in C language.
Why use loop ?
When you need to execute a block of code several number of times then you need to use looping concept in C language.
Answered by
4
Answer:
Hello!!!
Explanation:
In looping, a program executes the sequence of statements many times until the stated condition becomes false. A loop consists of two parts, a body of a loop and a control statement.
Similar questions