What will be the output of the following program.
		
					

Loading

โœช Choose the correct option.

What will be the output of the following program.


#include
int AX = 0;
int main()
{
int i=0;
i = abc();
printf("%d",i);
return 0;
}
abc()
{
AX = 1000;
return AX;
}

A. 0
B. 1000
C. 100
D. Garbage Value

Leave a Comment