F03 Answer


a=77    *pa=77


Comments:

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

So far, all our examples have the same picture and print the same thing. But they each is different in the details.