M Mr. Dubey π Coach β 104.48K Points π CPP Programming 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 ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) Compiler Error