fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4.  
  5. long long int i=0,j,n;
  6. while(1)
  7. {n=i;
  8. if(n%7==3)
  9. {
  10. n=n/7;
  11. if(n%11==4)
  12. {
  13. n=n/11;
  14.  
  15. if(n%13==5)
  16. {
  17. printf("%uld",i);
  18. break;}}}
  19. \\ else if(i=4000000000)
  20. \\{printf("not found");
  21. \\break;}
  22. i++;
  23. }
  24. return 0;
  25. }
  26.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
cc1: warnings being treated as errors
prog.c: In function ‘main’:
prog.c:17: error: format ‘%u’ expects type ‘unsigned int’, but argument 2 has type ‘long long int’
prog.c:19: error: stray ‘\’ in program
prog.c:19: error: stray ‘\’ in program
prog.c:19: error: suggest parentheses around assignment used as truth value
prog.c:20: error: stray ‘\’ in program
prog.c:20: error: stray ‘\’ in program
prog.c:21: error: stray ‘\’ in program
prog.c:21: error: stray ‘\’ in program
prog.c:5: error: unused variable ‘j’
stdout
Standard output is empty