fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4.  
  5. long long int i=0,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("%ld",i);
  18. break;}}}
  19. i++;
  20. }
  21. return 0;
  22. }
  23.  
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 ‘%ld’ expects type ‘long int’, but argument 2 has type ‘long long int’
stdout
Standard output is empty