fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. unsigned char h = 17, m = 45, s = 5;
  6.  
  7. printf("%#x:%#x:%#04x", h, m, s);
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
0x11:0x2d:0x05