Code is copied!
Write a program to create a square metre of order N and whose maximum size is 11 you are then required to fill
the matrix by value ranging from 1 to N2 and then display the matrix on the screen
For Example if N = 5
then matrix would be
1 2 3 4 5
6 7 8 9 10
11 12 13 14 15
16 17 18 19 20
21 22 23 24 25
Write a program to create a square metre of order N and whose maximum size is 11 you are then required to fill the matrix by value ranging from 1 to N2 and then display the matrix on the screen For Example if N = 5 then matrix would be 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25