C program to demonstrate the use of break statement
kw.c
Output
kodingwindow@kw:~$ gcc kw.c
kodingwindow@kw:~$ ./a.out 0 1 2 3 4 kodingwindow@kw:~$
C program to demonstrate the use of continue statement
kw.c
Output
kodingwindow@kw:~$ gcc kw.c
kodingwindow@kw:~$ ./a.out 0 1 2 3 4 6 7 8 9 kodingwindow@kw:~$
Advertisement