📚 Practice Mode
C++ Programming
Learn at your own pace with hints and detailed explanations
1 / 15
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