Analyze the below code and fill in the blanks to complete the code #include int main() { int Array1 [2][3]={{10,20,30},{11,21,31}}; int Array2...


Analyze the below code and fill in the blanks to complete the code


#include


int main()


{


int Array1 [2][3]={{10,20,30},{11,21,31}};


int Array2 [___][___]={{1,2,3,5,6},{8,9,10,11,12},{10,20,30,40,50}};



       for (int a = 0;a < 2;="">


        {


            for (int b = 0;b < 4;="">


      {


      printf("Array2 [%d][%d] = %d \n",a,b, Array2 [a][b]);



            }



        }


for (int c = 0;c < __;="">


        {


            for (int d = 0;d < __;="">


      {


      printf("Array [%d][%d] = %d \n",__,__, Array1 [__][__]);



            }



        }


}



Jun 05, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here