1.

Write a program to demonstrate 2 dimensional arrays

Answer»

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...



Discussion

No Comment Found

Related InterviewSolutions