Write a c program to check whether the given matrix is a magic square matrix or not?
The matrix is magic square matrix, if all rows sum, columns sum and diagonals sum must be equal. Example:
8 1 6
3 5 7
4 9 2 is the magic square matrix. Read more about C Programming Language . and read the C Programming Language (2nd Edition). by K and R.
To get regular updates on new C programs, you can Follow @c_program
You can discuss these programs on our Facebook Page. Start a discussion right now,
our page!
Share this program with your Facebook friends now! by liking it
(you can send this program to your friend using this button)
Like to get updates right inside your feed reader? Grab our feed!
To browse more C Programs visit this link
The matrix is magic square matrix, if all rows sum, columns sum and diagonals sum must be equal. Example:
8 1 6
3 5 7
4 9 2 is the magic square matrix. Read more about C Programming Language . and read the C Programming Language (2nd Edition). by K and R.
/***********************************************************
* You can use all the programs on www.c-program-example.com
* for personal and learning purposes. For permissions to use the
* programs for commercial purposes,
* contact info@c-program-example.com
* To find more C programs, do visit www.c-program-example.com
* and browse!
*
* Happy Coding
***********************************************************/
#include <stdio.h>
#include<conio.h>
void main()
{
int A[10][10];
int i, j=0, M,N;
int size;
int sum,sum1,sum2;
int flag=0;
clrscr();
printf("Enter the order of the matrix:\n");
scanf("%d %d", &M, &N);
if(M==N){
printf("Enter the elements of matrix \n");
for(i=0; i<M; i++)
{
for(j=0; j<N; j++)
{
scanf("%d",&A[i][j]);
}
}
printf("\n\nMATRIX is\n");
for(i=0; i<M; i++)
{
for(j=0; j<N; j++)
{
printf("%3d\t",A[i][j]);
}
printf("\n");
}
sum=0;
for(i=0;i<M;i++)
for(j=0;j<N;j++)
{
if(i==j)
sum=sum+A[i][j];
}
for(i=0;i<M;i++)
{
sum1=0;
{
for(j=0;j<N;j++)
sum1=sum1+A[i][j];
}
if(sum==sum1)
flag=1;
else
{
flag=0;
break;
}
}
for(i=0;i<M;i++)
{
sum2=0;
for(j=0;j<N;j++)
{
sum2=sum2+A[j][i];
}
if(sum==sum2)
flag=1;
else
{
flag=0;
break;
}
}
if(flag==1)
printf("\n\n The given Matrix is a Magic square matrix\n\n");
else
printf("The given Matrix is NOT a Magic square matrix\n\n");
} else
{
printf("\n\nPlease enter the square matrix order(m=n)\n\n");
}
}
Read more Similar C Programs Matrix Programs Learn C ProgrammingYou can easily select the code by double clicking on the code area above.
To get regular updates on new C programs, you can Follow @c_program
You can discuss these programs on our Facebook Page. Start a discussion right now,
Share this program with your Facebook friends now! by liking it
(you can send this program to your friend using this button)
Like to get updates right inside your feed reader? Grab our feed!