fork(2) download
  1. #include <stdio.h>
  2. int main( )
  3. {
  4. float a = 25.345, c ;
  5. float *b ;
  6.  
  7. b = &a ;
  8. c = *b;
  9.  
  10. printf ("%f %f %f", a, *b, c);
  11. }
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
25.344999 25.344999 25.344999