Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

II. Assume that C has dynamic scope (it does not) instead of static scope. What would the output be? (Do this before doing part III,

image text in transcribedimage text in transcribed

II. Assume that C has dynamic scope (it does not) instead of static scope. What would the output be? (Do this before doing part III, but you can change your answers after doing part III). 5 points. f: as b= cs g: a= ce b= main: a III. Modify the C program to emulate dynamic scope. Follow these steps. 10 points. 1. Move lines 3-5 into main(). Do not leave any global variables. 2. Since g() references a and b but does not define them, pass them in from main(). BUT you cannot just pass the values of a and b. You must pass the addresses of a and b. 3. Likewise, f() references a, b, c so you need to pass addresses, from g() into f(). 4. Do some additional changes to make gcc happy. Make sure you use the-Wall option on gcc. 5. Verify that you got the same answers as part II above. Or update part II to match. IV. What is the output from your modified C program? It should match part II above. 10 points. f: ar b= g: as b= main: a b= Submit your modified C program, as well as the outputs for parts I, II and IV. You can submit the output as a text file, you can update this word doc, you can submit a pdf, etc. #include scope.c 1 2 3 4 5 6 int a = 10; int b = 20; int c = 30; 7 static void f(void) { a += 5; b += 5; C += 5; 11 printf("f: a=%d b=8d c=&d ", a, b, c); 12 } 14 Estatic void g(void) { 15 int c = 40; 16 b += 5; 17 C += 5; 18 f(); 19 printf("g: a=&d b=$d c=8d ", a, b, c); 20 } 21 22 pint main(int arge, char *argv[]) { 23 g(); 24 printf ("main: a=&d b=%d c=%d ", a, b, c); 25

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Visual Basic 4 Ole Database And Controls Superbible

Authors: Michael Hatmaker, C. Woody Butler, Ibrahim Malluf, Bill Potter

1st Edition

1571690077, 978-1571690074

More Books

Students also viewed these Databases questions

Question

1. Identify three communication approaches to identity.

Answered: 1 week ago

Question

5. Discuss the role of the Web in career management.

Answered: 1 week ago