(Total 12 questions) (Time spent 0:0)
1. What is the output of following C++ program?
#include < iostream>
using namespace std;
int main()
{
typedef int num;
typedef char let;
let w = "steve";
num a = 10, b = 15;
num c = a + w;
cout << c;
return 0;
}
View Test Answer