1 #include <stdio.h> 2 3 static char *p; 4 5 int main(void) 6 { 7 printf ("+++Pointer size:\n"); 8 printf ("%d\n", sizeof (p)); 9 return 0; 10 } 11