Explain what?s happening in the first constructor: public
class c{ public c(string a) : this() {;}; public c() {;} }
How is this construct useful?
Answer Posted / vijaykumar
When constructor public c(string a) is called to construct
an object, it first calls the default constructor then the
initialisation procedures in public c(string a).
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
c program to compute AREA under integral
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What do you mean by command line argument?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
What is anagram in c?
Are negative numbers true in c?
Explain why c is faster than c++?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
What is hashing in c?
Why we use break in c?
What does malloc () calloc () realloc () free () do?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Is that possible to store 32768 in an int data type variable?
Do you know the use of 'auto' keyword?
Differentiate between full, complete & perfect binary trees.