fork(65) download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <inttypes.h>
  5.  
  6. int main ()
  7. {
  8. printf("%s\n", PRIu64);
  9. uint64_t foo = 10;
  10. printf("foo is equal to %" PRIu64 "!\n", foo);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
llu
foo is equal to 10!