Will the following code compile?
#include <stdio.h> int main( void ) { int a ; int *pa = &a ; &a = 77 ; printf("a=%d *pa=%d\n", a, *pa ); return 0; }