Home » C++ Programming » References

Which of the following statement is correct about the program given below? #include<iostream.h> class CuriousTab { int x, y; public: CuriousTab(int &xx, int &yy) { x = xx; y = yy; Display(); } void Display() { cout<< x << " " << y; } }; int main() { int x1 = 10; int &p = x1; int y1 = 20; int &q = y1; CuriousTab objCuriousTab(p, q); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!