What will be the output of the following code? #include< stdio>
int main() { extern int a; static char j = ‘E’; printf(“%c %d”, ++j, ++a); return 0; }
Answer: B
No answer description available for this question.