C++ Programming
Casual Mode - Take your time!
1 / 15
Correct
0
Incorrect
0
Score
0%
Multiple Choice
What is the output of C++ program given below?
#include<iostream>
using namespace std;
int main()
{
typedef int hello;
hello i=9.9;
cout<<i;
}
- 9
- 9.9
- 9.0
- Error in the program
- None of the above