Home » C++ Programming » Functions

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.

← Previous Question Next Question→

More Questions from Functions

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion