// File: init2.cpp // // Are int's initialized in objects? #include using namespace std ; class abc { public: int i ; } ; abc x1 ; main() { abc y1 ; cout << x1.i << endl ; cout << y1.i << endl ; }