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 does exit() do?
What is && in c programming?
Explain what’s a signal? Explain what do I use signals for?
What is function pointer and where we will use it
write a program which counts a product of array elements lower than 10.
write a program to add two numbers of any size.....(remember any size)
What is the difference function call by value & function call by reference?
Write a program to know whether the input number is an armstrong number.
What is the use of ?: Operator?
What are the different types of errors?
Write a program to find factorial of a number using recursive function.
What is main return c?