1.

What is the output of this program?
#include <iostream>
using namespace std;
int main ()
{
int num1 = 150;
double num2 = 6.251;
cout << num1;
cout << " ";
cout << num2 << " " << num1 * num2;
endl (cout);
return 0;
}

A. 150 6.251 937.65
B. 150 6.251
C. 937.65
D. 150
E. None of these
Answer» B. 150 6.251


Discussion

No Comment Found

Related MCQs