fork(3) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x,s,m,h;
  5. x=194033;
  6. h=x/3600;
  7. m=x%3600/60;
  8. s=x%60;
  9. printf("%d:%d:%d",h,m,s);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5296KB
stdin
Standard input is empty
stdout
53:53:53