For Loop

Why Trust Techopedia

What Does For Loop Mean?

For loop is a programming language conditional iterative statement which is used to check for certain conditions and then repeatedly execute a block of code as long as those conditions are met.

Advertisements

The for loop is distinguished from other looping statements through an explicit loop counter or loop variable which allows the body of the loop to know the exact sequencing of each iteration.

Techopedia Explains For Loop

The For loop is used in many imperative programming languages notably C and C++ and comes from the English word 'for' which is used to state the purpose of an object or action, in this case the purpose and details of the iteration.

For loops are generally used when the number of iterations is known or already established. For loops in different languages differ mainly by syntax and how the statements work as well as the level of expressiveness supported. But they generally fall into one of the following categories:

  • Traditional For loops – found in C/C++ and contains three parts: the initialization, the condition, and afterthought or commonly known as increment/decrement.
  • Iterator-based loops – this allows for the enumeration of a set of items which can be things other than number sequences such as a list of students. This is characterized by an explicit or implicit operator such as the aforementioned list of students. The loop then takes on each of the values in the set.
  • Vectorized for loops – these acts as if processing all iterations are parallel
Advertisements

Related Terms

Margaret Rouse
Technology Specialist
Margaret Rouse
Technology Specialist

Margaret is an award-winning writer and educator known for her ability to explain complex technical topics to a non-technical business audience. Over the past twenty years, her IT definitions have been published by Que in an encyclopedia of technology terms and cited in articles in the New York Times, Time Magazine, USA Today, ZDNet, PC Magazine, and Discovery Magazine. She joined Techopedia in 2011. Margaret’s idea of ​​a fun day is to help IT and business professionals to learn to speak each other’s highly specialized languages.