Will the following code compile and run?
#include <stdio.h> int main( void ) { int a = 45 ; int *pa = &a ; printf("a=%d pa=%o\n", a, pa ); /* Inspect this statement */ return 0; }