PLleasae convert this in C language, thanks! ... #include using namespace std; int main() { int a[10][10], b[10][10], s[10][10]; int i,j,row, column; cout > row; cout > column; cout > a[i][j]; } }...


PLleasae convert this in C language, thanks!
...


#include


using namespace std;



int main()


{


    int a[10][10], b[10][10], s[10][10];


    int i,j,row, column;


    cout <"enter size="" of="">


    cin >> row;


    cout <"enter size="" of="">


    cin >> column;


    cout <"enter elements="" of="" matrix="" a"=""><>


    for(i=0;i<>


    {


        for(j=0;j<>


        {


            cin >> a[i][j];


        }


    }


    cout <"enter elements="" of="" matrix="" b"=""><>


    for(i=0;i<>


    {


        for(j=0;j<>


        {


            cin >> b[i][j];


        }


    }


    cout < "difference="" of="" a="" and="" b"=""><>


    for(i=0;i<>


    {


        for(j=0;j<>


        {


            cout < a[i][j]="" -="" b[i][j]="">< "=""  ="">


        }


        cout <>


    }


    getch();


    return 0;


}



Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here