Q. What is the output of the following code?
Code:#include <iostream>
using namespace std;
int main()
{
char c = 65;
cout << c;
return 0;
}
β
Correct Answer: (D)
A
#include <iostream>
using namespace std;
int main()
{
char c = 65;
cout << c;
return 0;
}
You must be Logged in to update hint/solution