What will be the output of the following program?

		
					

Loading

โœช Choose the correct option.

What will be the output of the following program?

#include  
struct MyData {
public:
int Addition(int a, int b = 10) {
return (a *= b + 2);
}
float Addition(int a, float b);
};
int main() {
MyData data;
cout< cout< return 0;
}

A. 44907
B. 12 18
C. 3 14
D. 44913