#include main() { int i,j; i=1; for(j=1; j<=100; j=j+1){ printf("i = %d \n", i); if(i>=10) break; i=i+1; } }