int main() { int a = 40; // local variables always win when there is a conflict between local and global. { extern int a; printf("%d ", a); } }