Advertisements
Advertisements
Question
What is the syntax to declare two – dimensional array.
Short Note
Solution
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.
shaalaa.com
Is there an error in this question or solution?