fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main ()
  4. {
  5. int a = 10;
  6. float b = 10;
  7. float a2 = *(float*)&a;
  8. printf("%d+%0f=%f\n",a, b, a2+b);
  9. printf("Success, ororo!\n");
  10. }
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
10+10.000000=10.000000
Success, ororo!