fork download
  1. #include <stdio.h>
  2.  
  3.  
  4. int main(void) {
  5. int i;
  6. int n=12;
  7. for(i=0 ; i< n; i++)
  8. {
  9. if(i==0){
  10. printf("your number is: %d",i);
  11. }
  12. break;
  13. printf("i am just checking");
  14. }
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 5524KB
stdin
10
stdout
your number is: 0