M Mr. Dubey π Coach β 104.48K Points π Object Oriented Programming (OOP) 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) compile time error (B) garbage (C) 0 (D) 5 ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) compile time error