fork download
  1. #include <stdio.h>
  2. #include <inttypes.h>
  3.  
  4. int main(void) {
  5. double d = 0.;
  6. printf("%" PRId64 "\n", *((uint64_t*) &d));
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 4256KB
stdin
Standard input is empty
stdout
0