Difference between revisions of "Loop"

From Conservapedia
Jump to navigation Jump to search
(Loop moved to Infinite loop)
 
Line 1: Line 1:
#REDIRECT [[Infinite loop]]
+
A '''loop''' in [[computer programming]] is a section of instructions which are repeated - either endlessly or until a certain expected state occurs.
 +
 
 +
A common error made by novice programmers is to program an [[infinite loop]], i.e., one that never ends despite the programmer's hopes.

Revision as of 16:23, March 29, 2007

A loop in computer programming is a section of instructions which are repeated - either endlessly or until a certain expected state occurs.

A common error made by novice programmers is to program an infinite loop, i.e., one that never ends despite the programmer's hopes.