fork(1) download
  1. #include <stdio.h>
  2. #include <math.h>
  3. #include <conio.h>
  4. void main()
  5. {
  6. int h,m,s;
  7. printf("Idet Secunda");
  8. scanf("%d", s);
  9. m=s/3600;
  10. h=s/60;
  11. printf("Proshlo minut %d", m);
  12. printf("Proshlo chasov %d", h);
  13. printf("Proshlo secund %d", s);
  14. getch();
  15.  
  16.  
  17. }
  18.  
Compilation error #stdin compilation error #stdout 0s 9424KB
stdin
Standard input is empty
compilation info
prog.c:3:19: fatal error: conio.h: No such file or directory
 #include <conio.h>
                   ^
compilation terminated.
stdout
Standard output is empty