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 CrackexamsTest(int x, int y);
int CrackexamsTest(int x, int y, int z = 5);
int main() {
cout << CrackexamsTest(2, 4) << endl;
return 0;
}
int CrackexamsTest(int x, int y) {
return x * y;
}
int CrackexamsTest(int x, int y, int z = 5) {
return x * y * z;
}

A. 5
B. 8
C. 40
D. Compile Time Error