#include #include int main() { int i; for(i=0; i<=10; i++){ if(i==6){ continue; } printf("i is %d\n", i); }//here i plus 1 printf("i is %d outside of the for loop\n", i); return 0; }