📚 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;
}

  1. 9
  2. 9.9
  3. 9.0
  4. Error in the program
  5. None of the above