fork download
  1. #define __STDC_FORMAT_MACROS
  2. #include <inttypes.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <unistd.h>
  6. #include <stdint.h>
  7. int main(int argc,char **argv)
  8. {
  9. uint64_t val=1234567890;
  10. printf("%"PRId64"\n",val);
  11. exit(0);
  12. }
  13.  
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
1234567890