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 |
I need a sort of an approximate strcmp routine?
Write a program of prime number using recursion.
What does %p mean?
What happens if header file is included twice?
Explain what is #line used for?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
fn f(x) { if(x<=0) return; else f(x-1)+x; }
WHAT IS HIGH LEVEL LANGUAGE?
what is the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,
Method Overloading exist in c ?
what is the use of #pragma pack, wer it is used?
Explain bitwise shift operators?