What is a Default constructor?
Answer / munendra kumar
A constructor that has no arguments.
If you don't code one, the compiler provides one if there are no other constructors. If you are going to instantiate an array of objects of the class, the class must have a default constructor.
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a single instruction that will find the remainder of integral division when x is divided by y. Have the answer stored in z.
What is late binding c++?
How do you establish an is-a relationship?
What is std :: endl?
Can you please explain the difference between using macro and inline functions?
How did c++ get its name?
Should I learn c or c++ first?
What is the use of setfill in c++?
Array base access faster or pointer base access is faster?
What are the unique features of C++.
What is #include iostream in c++?
What is the difference between Char a[ ]=”string” and char *a=”String”