fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. printf("%d\n", 12);
  6. printf("%d\n", 014);
  7. printf("%d\n", 0xc);
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0s 5424KB
stdin
Standard input is empty
stdout
12
12
12