Tag: while loop

  • While loop

    Many a times we will encounter a situation where we have to iterate over a group of statements until a specific condition is met. The number iterations that the loop should run is not fixed or known. In such cases, while loop is used. Statements inside a while loop are executed iteratively until a given…