Top

Discussion

What is the output of the following program?

#include< stdio>

int main()
{
static int a = 3;
printf(“%d”, a --);
return 0;
}

 

  • A.1
  • B.2
  • C.3

Answer: C

No answer description available for this question.

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

Post your comment