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 |
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
what does ‘Bus Error’ mean?
How does the assert() function work?
Define VARIABLE?
Write a program with dynamically allocation of variable.
which do you prefer C or Pascal?
Write a program that his output 1 12 123
What does double pointer mean in c?
What is static memory allocation?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
What is a structure member in c?