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

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