Can u do this code like a function #include int main() { int k, n1, m1,i,j; int mat[4][4] = { { 10, 27, 35, 14 }, { 99, 54, 81, 20 }, { 63, 36, 80, 11 }, { 95, 78, 45, 37} }; for (int i = 0; i ...


Can u do this code like a function


#include



int main()


{



    int k, n1, m1,i,j;


    int mat[4][4] =


    {


        { 10, 27, 35, 14 },


        { 99, 54, 81, 20 },


        { 63, 36, 80, 11 },


        { 95, 78, 45, 37}


    };


     for (int i = 0; i < 4;="" i++)="">



        // Sort even rows in ascending order


        if (i % 2 == 0)


        {


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


            {


                for (int n1 = m1 + 1; n1 < 4;="" ++k)="">




                    if (mat[i][n1] > mat[i][m1])


                    {



                        // swap adjacent element


                        int extra = mat[i][n1];


                        mat[i][n1] = mat[i][m1];


                        mat[i][m1] = extra;


                    }


                }


            }


        }


 else {


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


            {


                for (int m1 = n1 + 1; m1 < 4;="">


                {



                    // compare adjacent elements


                    if (mat[i][n1] <>


                    {



                        // swap adjacent element


                        int extra = mat[i][n1];


                        mat[i][n1] = mat[i][m1];


                        mat[i][m1] = extra;


                    }


                }


            }


        }





return 0;


}


}





Jun 06, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here