1 #include <stdio.h> 2 3 extern char _etext[]; 4 main(void)5 int main(void) 6 { 7 printf ("%p: %d\n", _etext, _etext[0]); 8 return 0; 9 } 10