-
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;
}
-
- 150 6.251 937.65
- 150 6.251
- 937.65
- 150
- None of these
Correct Option: A
In this program, We are printing the given value and manipulating the given value by using endl.