1 #include <stdio.h> 2 3 extern unsigned int __ImageBase; 4 main()5 int main() 6 { 7 printf ("%x\n", __ImageBase); 8 return 0; 9 } 10 11