What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main()
{
char c = 74;
cout << c;
return 0;
}
#include <iostream>
using namespace std;
int main()
{
char c = 74;
cout << c;
return 0;
}A. A
B. N
C. J
D. I
Answer: Option C

Join The Discussion