In this program, You will learn how to implement the default constructor in C++.
Default constructor in C++
Test() {
//statement
}
#include<iostream>
using namespace std;
class Test {
public:
int a;
Test() {
cout << "Enter a number:";
cin >> a;
}
void display() {
cout << "Value of a is:" << a;
}
};
int main() {
Test obj;
obj.display();
return 0;
}
Enter a number:120
Value of a is:120