#include main() { int x, y; for(x=1; x<=10; x++) { if(x == 5) break; printf("%d ", x); } printf("Broke out at x == %d\n",x); for(x=1; x<=10; x++) { if(x == 5) { y = x; continue; } printf("%d ", x); } printf("Skipped x == %d\n",y); }