answersLogoWhite

0

A "While" loop is a part of computer programming.

The logic is "while this condition is true, do the following commands and repeat".

By default this will repeat forever creating a "loop" in logic. To stop looping you have to include a command that will change the original condition inside the loop.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What are the three looping statement in turbo C?

for,while,do while


What is a while loop known as?

A Looping Structure


Is while-wend a looping statement?

Yes.


What is looping statement in turbo c?

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


What are the three looping statements in java PL?

There are 4 different looping statements in Java. They are:While loopDo-While loopFor loopFor Each loop


What is the difference between branching and looping?

Branching and looping are fundamental control structures in programming. Branching allows a program to make decisions based on conditions, executing different code paths (e.g., using if-else statements). In contrast, looping enables the repeated execution of a block of code as long as a specified condition is met, utilizing structures like for, while, or do-while loops. Essentially, branching directs the flow based on conditions, while looping iterates through code.


What is looping statement?

What is looping statement?


What is Looping in writing?

Looping is linking your thoughts to expand on your writing.


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.


What is meant by the initials YTMND?

The initials YTMND stand for "you're the man now dog". It is a website in which people can submit images and animation accompanied with a looping sound loop.


What is the notation used to place block of statements in a looping structure in C plus plus?

for( ; ; ) { statement_block; } while( conditional_expression ) { statement_block; } do { statement_block; }while( conditional_expression )


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