โช 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;
}