void limit(int stop){ int x; for(x=0;x<=100;x=x+1){ printf("%d ",x); if(x==stop){ puts("You won!"); return; } } puts("I won!"); }