C Program to show Example of While .. Continue

C Program to show Example of While .. Continue 




#include

 int main()
 {
  int i;

  i = 0;
       while ( i < 20 )
       {
            i++;
            
            printf(" to see\n");
continue;
printf("Nothing to see\n");
       }
       return 0;
 }


No comments:

Post a Comment