Explain what?s happening in the first constructor: public
class c{ public c(string a) : this() {;}; public c() {;} }
How is this construct useful?
Answer / 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 |
What is use of null pointer in c?
Is c programming hard?
What are the difference between a free-standing and a hosted environment?
What are the 5 types of organizational structures?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is meant by global static? why we have to use static variable instead of Global variable
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Does sprintf put null character?
what is meant by the "equivalence of pointers and arrays" in C?
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none