fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. union {
  5. int i;
  6. float f;
  7. } test;
  8. test.i = 1078530010;
  9. printf("%f", test.f);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 4344KB
stdin
Standard input is empty
stdout
3.141593