Matrix Operation
Submit solution
C
Points:
10
Time limit:
1.5s
Memory limit:
64M
Author:
Problem type
Allowed languages
Write a c program to read a 4X4 matrix and perform suitable operation to obtain the transformed matrix after shift operations. Try your problem for input elements 01 to 16
Input matrix {{02 03 01 01},{01 02 01 01},{03 02 01 02},{02 01 01 01}}
Output Matrix {{02 03 01 01},{02 01 01 01},{01 02 03 02},{01 02 01 01}}
Comments