Saved Bookmarks
| 1. |
What is the syntax to declare two – dimensional array. |
|
Answer» The declaration of a 2 – D array is data – type array_name[row – size] [col – size]; In the above declaration, data-type refers to any valid C++ data – type, array _ name refers to the name of the 2 – D array, row – size refers to the number of rows and col-size refers to the number of columns in the 2 – D array. |
|