Puzzle P10

What does the following code write to the monitor?

#include <stdio.h>
int main( void )
{
  double   a = 123.456 ;
  double *pa = &a ;
  
  printf("a=%lf *pa=%lf\n", a, *pa );
 
}


Previous Page        Answer         Next Page         Home