Continue statements

Continue statement in C programming language

Continue statement in C programming language

C program continue statement

We will get to know the uses of Continue statement in C programming language in this tutorial (using for loop and while loop) – it controls the flow of control of loops  in C language

Description

Continue is a keyword in the C language (some time called as a statement because ending with the semicolon)which is used to control the flow of loops.

Typically, this statement can be used inside of the while and for loop.

The continue statement provides the option to skip the current iteration(skip some statements) of the flow of control to the following loops until the flow of control exits the loops.

The syntax of the continue

continue;

Flow diagram of continue

Continue statement in Python

 

How continue statement works in C – control flow for loop

the control flow of for loop

 

How to continue statement works  in C – control flow – while loop

the control flow of continue in while loop

continue statement in for loop

Program 1

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int i;
    for(i=1; i<=10; i++)
    {
        if(i==5){
            printf("Skipped this value :%d\n",i);
            continue;
        }
        printf("%d\n",i);
    }
    printf("End of loop\n");
    getch();
    return 0;
}

 

When the above code is compiled and executed, it will produce the following results

1
2
3
4
skipped value :5
6
7
8
9
10
End of loop

 

When this program is executed, number 5 skipped by continue statement in for loop of C

Program 2

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int num;
    int sum=0;
    int i,n;
    printf("Enter any number \n");
    scanf("%d",&n);

    for(i=1; i<=n; i++){
            printf("Enter Number :%d\n",i);
            scanf("%d",&num);
            if(num==20){
                continue;
            }
           sum=sum+num;
        }
        printf("Total value is :%d\n",sum);
    printf("End of program");
    getch();
    return 0;
}


 

When the above code is compiled and executed, it will produce the following results

Enter any number 5 
Enter number :1 
10 
Enter number :2 
20
Enter number :3 
30 
Enter number :4 
40 
Enter number :5 
50
Total value is :130 
End of program

Number 20 skipped by continue statements from the addition

Continue statement in while loop in C

Program 3

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int i=1;
    while(i<=10){
        if(i==6){
            printf("Skipped value :%d\n",i);
            i++;
               continue;
        }
        printf("value %d\n",i);
        i++;
    }
    printf("End of loop\n");
    getch();
    return 0;
}

 

When the above code is compiled and executed, it will produce the following results

value 1
value 2
value 3
value 4
value 5
Skipped value :6
value 7
value 8
value 9
value 10
End of loop

 

When this program is executed, number 6 skipped the continue statement in for loop

Program 4

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int num;
    int sum=0;
    int i,n;
    printf("Enter any number \n");
    scanf("%d",&n);
    i=1;
    while(i<=n){
            printf("Enter Number :%d\n",i);
            scanf("%d",&num);
            if(num==25){
                continue;
                ++i;
            }
           sum=sum+num;
           ++i;
        }
        printf("Total value is :%d\n",sum);
    printf("End of program\n");
    getch();
    return 0;
}

 

When the above code is compiled and executed, it will produce the following results

Enter any  number
5
Enter number :1
10
Enter number :2
15
Enter number :3
20
Enter number :4
25
Enter number :5
30
Total value is :110
End of program

When this program is executed, number 25 is skipped from calculating total by continue statement in for loop

 

Suggested for you

for loop in C language

while loop in C language

break statement in Python language

 

The continue keyword in Java programming language
Continue statement in Python programming language
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

PHP Star Triangle pattern program

PHP Star Triangle pattern program In this tutorial, we will discuss about PHP Star Triangle…

1 month ago

PHP Full Pyramid pattern program

PHP Full Pyramid pattern program In this tutorial, we will discuss about PHP Full Pyramid…

1 month ago

5 methods to add two numbers in Java

5 methods to add two numbers in Java In this tutorial, we will discuss the…

2 months ago

Python Full Pyramid star pattern program

Python full Pyramid star pattern program In this tutorial, we will discuss  the concept of…

5 months ago

Write a function or method to convert C into F -Entered by user

Write a function or method to convert C into F -Entered by the user In…

10 months ago

How to write a function or method to convert Celsius into Fahrenheit

How to write a function or method to convert Celsius into Fahrenheit In this tutorial,…

10 months ago