1 #include <cstdio>
2 #include "liba.h"
3 int global = 0x42;
func()4 void func()
5 {
6     printf("global = 0x%x (%p)\n", global, &global);
7 }
8 
9