What will be the output of the following program?

		
					

Loading

โœช Choose the correct option.

What will be the output of the following program?

#include  
static int b = 0;
void DisplayData(int *x, int *y = &b) {
cout<< *x << " " << *y;
}
int main() {
int a = 10, b = 20 ;
DisplayData(&a, &b);
return 0;
}

A. 10 20
B. 10 0
C. Garbage value
D. Compile Time Error