Question: Exercise 1.6.4: What is printed by the following C code? #define a (x+1) int x = 2; void b() { x = a; printf(%d ,
Exercise 1.6.4: What is printed by the following C code? #define a (x+1) int x = 2; void b() { x = a; printf("%d ", x); } void c() { int x = 1; printf("%d ", a); } void main() { b(); c(); }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
