Please wait...
THANKU FOR BEING A PART OF OUR JOURNEY TO BRING "REVOLUTION IN EDUCATION"
We Genuinely APPRECIATE your PATIENCE

64
M: +3.00/-1.00

What is the output of the following program?
#include <stdio.h>
int tmp=20;
main()
{
printf(“%d “,tmp);
func();
printf(“%d “,tmp);
}
func()
{
static int tmp=10;
printf(“%d “,tmp);
}

[ISRO CS May 2017]
A
B
C
D