IT Log

Record various IT issues and difficulties.

Tag: infinite


  • Is do in C equivalent to an infinite loop

    In C programming, the do keyword does not represent an infinite loop by itself. It is part of the do-while loop construct. Unlike the while loop, which checks its condition before executing the loop body, the do-while loop executes the body at least once and then checks the condition to decide whether to repeat. A…