InterviewSolution
Saved Bookmarks
| 1. |
How many types of representation are in the string?(a) 1(b) 2(c) 3(d) 4 |
|
Answer» Correct option is (b) 2 The best I can explain: C++ provides the following two types of string representations. They are C-style character string and string class type with Standard C++. |
|