F02 Answer


a=77    *pa=77


#include <stdio.h>
int main( void )
{
  int  a = 77;
  int *pa = &a ;
  
  printf("a=%d   *pa=%d\n", a, *pa );
  
  system("pause");
  return 0;
}

Comments: This is the same as puzzle F01, except that the statements that declare the variables also initialize them.