English

Write a Definition for a Function Upperhalf(Int Mat[4][4]) in C++ Which Displays the Elements in the Same Way as per the Example Is Shown Below. Thew Function Should Display The Content in the Following Format: - Computer Science (C++)

Advertisements
Advertisements

Question

Write a definition for a function UpperHalf(int Mat[4][4]) in C++ which displays the elements in the same way as per the example is shown below.

For example, if the content of the array Mat is as follows:

25 24 23 22
20 19 18 17
15 14 13 12
10 9 8 7

Thew function should display the content in the following format:

Solution

void UpperHalf(int Mat[4][4])
{
    for (int i = 0; i < 4; i++)
    { 
        for (int j = 0; j < 4; j++)
        { 
            cout<< Mat[i][j] <<"";
        }
        cout<< endl;
    }
}
shaalaa.com
  Is there an error in this question or solution?
2017-2018 (March) All India Set 4
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×