Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Home
»
C++ Programming
»
Functions
What will be the output of the following program? #include<iostream.h> #include<string.h> class CuriousTabString { char x[50]; char y[50]; char z[50]; public: CuriousTabString() { } CuriousTabString(char* xx) { strcpy(x, xx); strcpy(y, xx); } CuriousTabString(char *xx, char *yy = " C++", char *zz = " Programming!") { strcpy(z, xx); strcat(z, yy); strcat(z, zz); } void Display(void) { cout<< z << endl; } }; int main() { CuriousTabString objStr("Learn", " Java"); objStr.Display(); return 0; }
Java Programming!
C++ Programming!
Learn C++ Programming!
Learn Java Programming!
Learn Java C++ Programming!
Show Answer
Correct Answer:
Learn Java Programming!
← Previous
Next →
Discussion & Comments
No comments yet. Be the first to comment!
Name:
Comment:
Post Comment