fork download
  1. #include <stdio.h>
  2. int main() {
  3. int i,j;
  4. for(i=1;i<=10;i++){
  5. if( i ==13) break;
  6. }
  7. printf("%d\n",i);
  8. return 0;
  9.  
  10. }
  11.  
  12.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
11