0

what is constructor

give example with details

30th Jun 2017, 7:11 PM
ā€ŽĀ ā€ā€ā€ŽAnonymous Guy
2 Answers
+ 2
class qae { qae() { cout<<"constructor"<<endl; } }; void main() { qae b(); } output: constructor
1st Jul 2017, 5:40 AM
Zaka Ahmad Chishti
Zaka Ahmad Chishti - avatar
+ 1
Constructor is automatically called when new object is created. Its name is same to class name.
1st Jul 2017, 5:36 AM
Zaka Ahmad Chishti
Zaka Ahmad Chishti - avatar