Respuesta :

Answer:

int intGrades[2][3]={ //array declaration.

                     {93,91,84}, //first rows

                     {85,89,91} //second rows

                   };

Explanation:

  • The above statement is written in c language, which is used to declare the two-dimensional array and initialize the value.
  • If any user wants to declare and initialize the two-dimensional array, then there are needs of data type and then variable name and then the dimension of the array.
  • Then the value is initialized by the help of syntax which is defined above.