Latest Wipro Aptitude Question SOLUTION: One c program is written in 2 files /*Program1.c*/ int x=10 /*Program2.c*/ #include "Program1.c" int main() { extern int x; printf("x : %d",x); } In Program2.c statement ex