Question: ??file1.c??#include int a = 10;extern int b;void func(){a++;b++;}??file2.c??#include extern int a = 20;int b = 30;int main(){printf(%d %d,a,b);func(); 1 answer

â??file1.câ??#includeint a = 10;extern int b;void func(){a++;b++;}â??file2.câ??#includeextern int a = 20;int b = 30;int main(){printf("%d %d",a,b);func(); 1 answer

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!