Common Data for Questions 48 and 49: Consider the following C code segment. int a, b, c = 0; void prtFun(void); main( ) static int a = 1; /* Line 1 */ prtFun( ); a += 1; prtFun( ); printf(" %d %d ", a, b); void prtFun(void) static int a = 2; /* Line 2 */ int b = 1; a += ++b; printf(" %d %d ", a, b); What output will be generated by the given code segment?
Topic-wise GATE CS PYQs with verified steps
