Google
 
   
Login
Username:

Password:


Lost Password?

Register now!
Search
Main Menu
service
top books
Polls
What do you think about php-deluxe.net?
Excellent!
Cool
Hmm..not bad
What the hell is this?
encyclopedia
recommendation
Freenet DSL
Who's Online
8 user(s) are online (3 user(s) are browsing encyclopedia)

Members: 0
Guests: 8

more...
partner

Loop counter

A loop counter is a counter Variable used in the program loop structure of most computer programming programming language.

Such variables change with each Iteration of a loop, providing a unique value for each individual iteration, and enabling the power of a loop structure to be utilised. The loop counter is often used to help decide when the loop should terminate, for program flow to continue to the next Instruction.

It is considered programming custom by many to use the loop counter variable names i, j and k (or so on if needed), where i would be the most outer loop, j the next inner loop, and so on. Most programmers recognise these variable names as being loop counters, and so are not considered ambiguous for their short size. This style is generally agreed to have originated from the early programming of Fortran, where these particular variable names did not need to be declared as integers, and so were obvious choices for loop counters that were only temporarily required. The practice also dates back further to mathematical notation where index notation for sums and multiplications are often i, j, etc.

= Example =

for(i = 0; i < 100; i++) { for(j = i; j < 100; j++) { function(i, j); } }

above: An example of C programming language code involving nested for loops, where the loop counter variables are i and j.