About 36,700 results
Open links in new tab
  1. Loops in Programming - GeeksforGeeks

    Jul 23, 2025 · Loops, also known as iterative statements, are used when we need to execute a block of code repetitively. Loops in programming are control flow structures that enable the repeated …

  2. What is a Loop? - W3Schools

    Loops are used when we need to run the same code lines many times. What is a Loop? A loop runs the same code over and over again, as long as the condition is true. The simulation below uses a loop to …

  3. Review: Looping (article) - Khan Academy

    To save ourselves from writing all that code, we can use a loop. JavaScript has two kinds of loops, a while loop and a for loop. A while loop is a way to repeat code until some condition is false. For …

  4. What Are Loops in Computer Programs? - ThoughtCo

    Apr 30, 2025 · Loops repeat actions until a condition is met, making programming tasks more efficient. There are different types of loops, like 'for', 'while', and 'do while', each with unique uses. Loop …

  5. C - Loops - Online Tutorials Library

    Loops are a programming construct that denote a block of one or more statements that are repeatedly executed a specified number of times, or till a certain condition is reached. Repetitive tasks are …

  6. Loops and iteration - JavaScript | MDN - MDN Web Docs

    Nov 3, 2025 · There are many different kinds of loops, but they all essentially do the same thing: they repeat an action some number of times. (Note that it's possible that number could be zero!) The …

  7. Looping Algorithms Explained: The Basics, Types, and Real Code

    Jun 13, 2025 · One of the most essential and frequently used types of algorithms is the looping algorithm. This type of algorithm allows computers to execute a set of instructions repeatedly — …

  8. Looping - Definition, Meaning & Synonyms | Vocabulary.com

    3 days ago · looping Other forms: loopings Definitions of looping noun (computer science) executing the same set of instructions a given number of times or until a specified result is obtained synonyms: …

  9. C Programming Course Notes - Looping Constructs

    In this section we will learn how to make computer repeat actions either a specified number of times or until some stopping condition is met. Both while loops and do-while loops ( see below ) are condition …

  10. Loops in C: For, While, Do While looping Statements [Examples]

    Aug 8, 2024 · Looping Statements in C execute the sequence of statements many times until the stated condition becomes false. A loop in C consists of two parts, a body of a loop and a control statement.