InterviewSolution
Saved Bookmarks
| 1. |
What main integer types are offered by C++? |
|
Answer» C++ offered three types of integers : short, int and long. Each comes in both signed and unsigned versions. |
|