What will be the output of the following program?

		
					

Loading

โœช Choose the correct option.

What will be the output of the following program?

#include 
#include
class TryString {
char x[50];
char y[50];
char z[50];
public:
TryString() { }
TryString(char* xx) {
strcpy(x, xx);
strcpy(y, xx);
}
TryString(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() {
TryString objStr("Learn", " Java");
objStr.Display();
return 0;
}

A. Java Programming!
B. C++ Programming!
C. Learn C++ Programming!
D. Learn Java Programming!