What is the output produced by the following program?
#include
using namespace std;
char mystery(int firstPar, int secondPar);
int main()
{
cout <>
return 0;
}
char mystery(int firstPar, int secondPar)
if (firstPar >= secondPar)
return 'W';
else
return 'H';
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here