Continue Statement in C

Last Updated :

Prerequisite – Control Statements in C
In C, the “continue” statement is used to skip the current iteration of a loop and move on to the next one. Here are a couple of examples of using “continue” in different loops:

Example-1: Print odd numbers between 1 and 10 using a “for” loop and “continue”

#include <stdio.h>

int main() {
    int i;

    for (i = 1; i <= 10; i++) {
        if (i % 2 == 0) {
            continue;
        }

        printf("%d ", i);
    }

    return 0;
}

Output:

1 3 5 7 9

In this example, the “for” loop is used to print the odd numbers between 1 and 10. Within the loop, the if statement is used to check if the value of i is even (i.e., if i divided by 2 has a remainder of 0). If i is even, the “continue” statement is executed, and the loop moves on to the next iteration without executing the printf statement. If i is odd, the printf statement is executed, and the odd number is printed to the console.

Example-2: Print the first 5 multiples of 3 using a “while” loop and “continue”

#include <stdio.h>

int main() {
    int i = 1;
    int count = 0;

    while (count < 5) {
        i++;

        if (i % 3 != 0) {
            continue;
        }

        printf("%d ", i);
        count++;
    }

    return 0;
}

Output:

6 9 12 15 18

In this example, the “while” loop is used to print the first 5 multiples of 3. The loop runs as long as the value of count is less than 5. Within the loop, the variable i is incremented at the beginning of each iteration. The if statement is used to check if i is a multiple of 3 (i.e., if i divided by 3 has a remainder of 0). If i is not a multiple of 3, the “continue” statement is executed, and the loop moves on to the next iteration without executing the printf statement. If i is a multiple of 3, the printf statement is executed, and the multiple of 3 is printed to the console. The variable count is then incremented, and the loop continues until count reaches 5.

Please write comments below if you find anything incorrect, or you want to share more information about the topic discussed above. A gentle request to share this topic on your social media profile.

Comment
Next Article
Mithlesh Upadhyay Published 20 Feb, 2023 · 2 min read

Mithlesh Upadhyay is a Computer Science and AI expert from Madhya Pradesh with strong academic background (BE in CSE and M.Tech in AI) and over six years of experience in technical content development. He has contributed tech articles, led teams, and worked in Full Stack Development and Data Science. He founded the w3colleges.org portal for learning resources.

Similar Reads

  • What should we use void main() or int main() ?

    There is question that what should we use void main() or int main() ? void main() { /* ... */ } Or, int main() { /* ... */…

    2 min read
  • C Comments

    Prerequisite – C Language Introduction C comments explain code and improve readability. These do not affect program execution. You can use comments in C to clarify code and describe…

    1 min read
  • C Programming Language Standard

    Prerequisite – C Language Introduction The C programming language has various versions: C89/C90, C99, C11, and C18. C89/C90: Released in 1989/1990. It introduced key language features. C99: This…

    2 min read
  • Features of C Programming Language

    Prerequisite – C Language Introduction C is a simple language made in 1972 by Dennis Ritchie. It’s for system programming. C has low-level memory access, basic keywords, good…

    1 min read
  • C Language Introduction

    C is a programming language developed by Dennis Ritchie in 1972. It has a significant historical impact. It was originally created at Bell Laboratories of AT&T Labs for…

    4 min read
  • Code editors

    Code editors are where programmers spend most of their time. There are two main types of code editors: IDEs and Lightweight editors. IDEs (Integrated Development Environments) IDEs (Integrated…

    1 min read