#include int count;int main(void){ extern int count; /* this refers to global count */ count = 20; printf("%d", count); return 0;}