InterviewSolution
Saved Bookmarks
| 1. |
Give the features of char data type. |
|
Answer» C++ offers a predefined data type that is one byte in size, which can hold exactly one character such as ‘a’ or ‘A’. To declare a variable of type char, char ch; |
|