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 ); }