Saved Bookmarks
| 1. |
Define an Array. What are the types? |
|
Answer» “An array is a collection of variables of the same type that are referenced by a common name”. An array is also a derived datatype in C++. There are different types of arrays used in C++. They are: 1. One – dimensional arrays 2. Two – dimensional arrays 3. Multi – dimensional arrays |
|