1.

After 3 calls of the c function bug() below, the values of i and j will be:int j = 1;bug(){ Static int i = 0; int j = 0;i++; j++;return (i) ; }

A. i=0, j=0
B. i=3, j=3
C. i=3, j=0
D. i=3, j=1
Answer» E.


Discussion

No Comment Found