Which of the following statement is correct about the program given below? #include #include #include class CuriousTabString { char txtName[20]; public: CuriousTabString(char *txtTemp = NULL) { if(txtTemp != NULL) strcpy(txtName, txtTemp); } void Display(void) { cout<
Correct Answer: Above program will display CuriousTab 9.
Discussion & Comments