What will be the output of the following program on GCC?

		
					

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC?

#include 
int main() {
int a,b;
printf("enter the values");
scanf("%d %d",&a,&b); // a=4 b=5
printf("a=%d b=%d ",a,b);
return 0;
}

A. a=0 b=0
B. a=4 b=0
C. a=4 b=5
D. a=0 b=5