fork download
  1. #include<stdio.h>
  2.  
  3. int main(void) {
  4. float a = 16;
  5. unsigned char *b = &a;
  6. printf("%f\n", *b);
  7. printf("%f\n", *((float *)b));
  8.  
  9. }
Success #stdin #stdout 0s 4992KB
stdin
Standard input is empty
stdout
0.000000
16.000000