fork download
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. int main(void)
  5. {
  6. float test = 123456.0f;
  7.  
  8. printf("VALUES:\n");
  9. printf("%f\n", test + 1);
  10. printf("%lu\n", (unsigned long)test + 1);
  11. printf("%lu\n", *((unsigned long *)&test) + 1);
  12. return 0;
  13. }
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
VALUES:
123457.000000
123457
1206984705