answersLogoWhite

0


Best Answer

It depends on the programming language, however most high-level languages will provide some variant of the standard 'for' loop in addition to some variant of the 'while' and 'do-while' loop.

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What control statement exhibits a looping structure?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is difference between control statements and looping statements in c language?

differance between control statement and looping statement?


What is looping statement?

What is looping statement?


Is while-wend a looping statement?

Yes.


What is a while loop known as?

A Looping Structure


What are the three looping statement in turbo C?

for,while,do while


Why is the FOR structure used for looping?

The FOR structure is used for looping to define the variable, define the conditions and then explination of what will be done to the variable. It is used for arrays to help run a code a set number of times.


What is looping statement in turbo c?

while, for, do-while (and perhaps goto)


How do you use a C-continue statement in a block- without any looping or conditional statements?

In the C language, the continue statement can only be used within a loop (for, while, or do). Upon execution, control transfers to the beginning of the loop.


What are iterative statements?

An iterative statement is a looping statement, such as a 'for', 'while', or 'do-while' statement. They cause statements to be repeated (iterated) multiple times.


Three most common types of sentences errors?

there are three common error of looping structure. 1. initializing of loop control variable 2.error of condition 3.control of exit loop


Why FOR loop structure used for looping?

The FOR structure is used for looping to define the variable, define the conditions and then explination of what will be done to the variable. It is used for arrays to help run a code a set number of times.


What are the differences between looping structure and conditional structure?

A conditional structure takes out of possible multiple paths given a condition. A looping structure, on the other hand, repeats the same steps while a specific condition is still met. Examples: Conditional: if (x 5) //do action end while