Question: What is wrong with trying to build a program consisting of the following two code modules? /************** code1.c *****************/ #include extern n; void f(int i)

What is wrong with trying to build a program consisting of the following two code modules? /************** code1.c *****************/ #include extern n; void f(int i) { static int j = 2; j++; printf("%d", i + j + n); } /************** code2.c *****************/ #include extern n; int main(void) { auto int i = 0, j; n = 4; f(i); getchar(); return 0; }

** need the answer to the question above**

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 Databases Questions!