C program to demonstrate the use of break statement
codeaft.c
#include <stdio.h>
int main()
{
    for (int i = 0; i < 10; i++)
    {
        if (i == 5)
        {
            break;
        }
        printf("%d\n", i);
    }
    return 0;
}
Output
codeaft@codeaft:~$ gcc codeaft.c
codeaft@codeaft:~$ ./a.out 0 1 2 3 4 codeaft@codeaft:~$
C program to demonstrate the use of continue statement
codeaft.c
#include <stdio.h>
int main()
{
    for (int i = 0; i < 10; i++)
    {
        if (i == 5)
        {
            continue;
        }
        printf("%d\n", i);
    }
    return 0;
}
Output
codeaft@codeaft:~$ gcc codeaft.c
codeaft@codeaft:~$ ./a.out 0 1 2 3 4 6 7 8 9 codeaft@codeaft:~$
Comments and Reactions