C++ Programming Multiple Choice Questions

Survey Description :

C++ Programming Multiple Choice Questions

Posted By : Birendra Singh

Survey Type : Public

Survey Date : 04 March, 2019

1.Which of the followings is/are automatically added to every class, if we do not write our own.

2.#include<iostream> using namespace std; class X { public: int x; }; int main() { X a = {10}; X b = a; cout << a.x << " " << b.x; return 0; }

3.#include<iostream> using namespace std; class X { public: int x; }; int main() { X a = {10}; X b = a; cout << a.x << " " << b.x; return 0; }

4.Demo Question?