A
Q. What will be the output of the following C++ code?
Code:
#include <iostream>
using namespace std;
int main()
{
char c = 74;
cout << c;
return 0;
}
using namespace std;
int main()
{
char c = 74;
cout << c;
return 0;
}
- Correct Answer - Option(B)
- Views: 4
- Filed under category C++
- Hashtags:
Discusssion
Login to discuss.