InterviewSolution
Saved Bookmarks
| 1. |
Write a program to demonstrate 2 dimensional arrays |
|
Answer» A two-dimensional array in C can be THOUGHT of as a matrix with ROWS and COLUMNS. The general syntax used to declare a two-dimensional array is: A two-dimensional array is an array of several one-dimensional arrays. Following is an array with five rows, each row has three columns: int my_array[5][3]; Explanation: mark me as brainiest... |
|