What does the following code write to the monitor?
#include <stdio.h> int main( void ) { int a = 44 ; int b = 66 ; int *p ; p = &a ; printf("*p=%d\n", *p ); p = &b ; printf("*p=%d\n", *p ); return 0; }