Monday, October 10, 2022
HomeWordPress DevelopmentC - Loops - GeeksforGeeks

C – Loops – GeeksforGeeks


Loops in programming are used to repeat a block of code till the desired situation is met. A loop assertion permits programmers to execute an announcement or group of statements a number of instances with out repetition of code.

C

#embrace <stdio.h>

   

int foremost()

{

    printf( "Hi there Worldn");

    printf( "Hi there Worldn");

    printf( "Hi there Worldn");

    printf( "Hi there Worldn");

    printf( "Hi there Worldn");

    printf( "Hi there Worldn");

    printf( "Hi there Worldn");

    printf( "Hi there Worldn");

    printf( "Hi there Worldn");

    printf( "Hi there Worldn");

       

    return 0;

}

Output

Hi there World
Hi there World
Hi there World
Hi there World
Hi there World
Hi there World
Hi there World
Hi there World
Hi there World
Hi there World

There are primarily two forms of loops in C Programming:

  1. Entry Managed loops: In Entry managed loops the check situation is checked earlier than getting into the primary physique of the loop. For Loop and Whereas Loop is Entry-controlled loops.
  2. Exit Managed loops: In Exit managed loops the check situation is evaluated on the finish of the loop physique. The loop physique will execute not less than as soon as, regardless of whether or not the situation is true or false. do-while Loop is Exit Managed loop.
loops in c

 

Loop Sort Description
for loop first Initializes, then situation test, then executes the physique and finally, the replace is finished.
whereas loop  first Initializes, then situation checks, after which executes the physique, and updating will be contained in the physique.
do-while loop do-while first executes the physique after which the situation test is finished.

for Loop 

for loop in C programming is a  repetition management construction that enables programmers to jot down a loop that can be executed a particular variety of instances. for loop permits programmers to carry out n variety of steps collectively in a single line.

Syntax:

for (intialize expression; check expression; replace expression)
{
    //
    // physique of for loop
    //
}

Instance:

for(int i = 0; i < n; ++i)
{
    printf("Physique of for loop which can execute until n");
}

In for loop, a loop variable is used to manage the loop. Firstly we initialize the loop variable with some worth, then test its check situation. If the assertion is true then management will transfer to the physique and the physique of for loop can be executed. Steps can be repeated until the exit situation turns into true. If the check situation can be false then it’s going to cease.

  • Initialization Expression: On this expression, we assign a loop variable or loop counter to some worth. for instance: int i=1;
  • Check Expression: On this expression, check situations are carried out. If the situation evaluates to true then the loop physique can be executed after which an replace of the loop variable is finished. If the check expression turns into false then the management will exit from the loop. for instance, i<=9;
  • Replace Expression: After execution of the loop physique loop variable is up to date by some worth it may very well be incremented, decremented, multiplied, or divided by any worth.

for loop Equal Stream Diagram:

for loop in c

 

Instance:

C

#embrace <stdio.h>

   

int foremost()

{

  int i = 0;

    

  for (i = 1; i <= 10; i++)

  {

    printf( "Hi there Worldn");   

  }

  return 0;

}

Output

Hi there World
Hi there World
Hi there World
Hi there World
Hi there World
Hi there World
Hi there World
Hi there World
Hi there World
Hi there World

Whereas Loop

Whereas loop doesn’t rely on the variety of iterations. In for loop the variety of iterations was beforehand recognized to us however within the Whereas loop, the execution is terminated on the premise of the check situation. If the check situation will change into false then it’s going to break from the whereas loop else physique can be executed.

Syntax:

initialization_expression;

whereas (test_expression)
{
    // physique of the whereas loop
    
    update_expression;
}

Stream Diagram for whereas loop:

while loop in C

 

C

#embrace <stdio.h>

   

int foremost()

{

  

  int i = 2; 

   

  

  whereas(i < 10)

  {

    

    printf( "Hi there Worldn");   

      

    

    i++;

  

    

  return 0;

}

Output

Hi there World
Hi there World
Hi there World
Hi there World
Hi there World
Hi there World
Hi there World
Hi there World

do-while Loop

The do-while loop is much like some time loop however the one distinction lies within the do-while loop check situation which is examined on the finish of the physique. Within the do-while loop, the loop physique will execute not less than as soon as regardless of the check situation.

Syntax:

initialization_expression;
do
{
    // physique of do-while loop
    
    
    update_expression;

} whereas (test_expression);
do while loop in C

 

C

#embrace <stdio.h>

   

int foremost()

{

  

  int i = 2; 

    

  do

  {

    

    printf( "Hi there Worldn");   

   

    

    i++;

      

    

  whereas (i < 1);   

    

  return 0;

}

Above program will consider (i<1) as false since i = 2. However nonetheless, as it’s a do-while loop the physique can be executed as soon as.

Loop Management Statements 

Loop management statements in C programming are used to vary execution from its regular sequence.

Title Description
break assertion the break assertion is used to terminate the swap and loop assertion. It transfers the execution to the assertion instantly following the loop or swap. 
proceed assertion proceed assertion skips the rest physique and instantly resets its situation earlier than reiterating it.
goto assertion goto assertion transfers the management to the labeled assertion.

Infinite Loop

An infinite loop is executed when the check expression by no means turns into false and the physique of the loop is executed repeatedly. A program is caught in an Infinite loop when the situation is at all times true. Principally that is an error that may be resolved through the use of Loop Management statements. 

Utilizing for loop:

C

#embrace <stdio.h>

   

int foremost ()

{

  int i;

    

  

  

  

  for ( ; ; )

  {

    printf("This loop will run without end.n");

  }

    

  return 0;

}

Output

This loop will run without end.
This loop will run without end.
This loop will run without end.
...

Utilizing Whereas loop:

C

#embrace <stdio.h>

   

int foremost() 

{

  whereas (1)

    printf("This loop will run without end.n");

  return 0;

}

Output

This loop will run without end.
This loop will run without end.
This loop will run without end.
...

Utilizing the do-while loop:

C

#embrace <stdio.h>

  

int foremost()

{

  do 

  {

    printf("This loop will run without end.n");

  } whereas (1);

    

  return 0;

}

Output

This loop will run without end.
This loop will run without end.
This loop will run without end.
...

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -
Google search engine

Most Popular

Recent Comments