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("%d %d ",a,b);
return 0;
}

A. 44685
B. 0 0
C. segmentation fault
D. No error, No output