1. Computer Science Engineering (CSE)
  2. CPP Programming
  3. Predict the output? #include <iostream> ...
Q.

Predict the output?
#include <iostream>
using namespace std;
class Test
{
int x;
Test()
{
x = 5;
} };
int main()
{
Test *t = new Test;
cout << t->x;
}

A. Compiler Error
B. 5
C. Garbage Value
D. 0
Answer» A. Compiler Error
View all MCQs in:   CPP Programming

Discussion