Computer Science, asked by tanisha7961, 10 months ago

what is loop statement in c language​

Answers

Answered by oliviajoylo
1

Answer:

it is of sequence of instruction that is continually repeated until a certain conditions is reached. Typically, a certain process is done, such as getting an item of data and changing it, and then some conditions is checked such as whether a counter has reached a prescribed number.

pls mark it a brainliest

Answered by mnandhinidevi3427
1

Answer:

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.

Explanation:

When you need to execute a block of code several number of times then you need to use looping concept in C language.

Similar questions