Home » C++ Programming » Constructors and Destructors

What will be the output of the following program? #include class CuriousTab { int x; public: CuriousTab(int xx, float yy) { cout<< char(yy); } }; int main() { CuriousTab *p = new CuriousTab(35, 99.50f); return 0; }

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!