What is the output of the following program?
#include< stdio> int main() { static int a = 3; printf(“%d”, a --); return 0; }
Answer: C
No answer description available for this question.