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