Top

Discussion

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;
}

 

  • A.E 2
  • B.F 1
  • C.F Garbage
  • D.F 0

Answer: B

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment