M Mr. Dubey π Coach β 103.11K Points π CPP Programming Q. Predict the output of following C++ program. #include<iostream> using namespace std; class Empty {}; int main() { cout << sizeof(Empty); return 0; } (A) A non-zero value (B) 0 (C) Compiler Error (D) Runtime Error ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) A non-zero value