fork download
  1. #include <inttypes.h>
  2. #include <stdint.h>
  3. #include <stdio.h>
  4.  
  5. int main()
  6. {
  7. uint64_t ram = 90;
  8. printf("%" PRIu64 "\n", ram);
  9. printf("%f\n", ram);
  10. }
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
90
0.000000