Twitter Feed Facebook Google Plus Youtube

Adsense responsive

Recent Post below header

Friday 15 February 2013

C PROGRAM: TO CHECK WHETHER A MATRIX IS SKEW SYMMETRIC OR NOT

CODING: 
#include<conio.h>
#include<stdio.h>
void main()
{
 int a[10][10],i,j,m;
 clrscr();
 printf("Enter order of square matrix: ");
 scanf("%d",&m);
 for(i=1;i<=m;i++)
 {
  for(j=1;j<=m;j++)
  {
   printf("Enter value of a[%d][%d]: ",i,j);
   scanf("%d",&a[i][j]);
  }
 }
 for(i=1;i<=m;i++)
 {
  for(j=1;j<=m;j++)
  {
   if(a[i][j]!=-a[j][i])
   {
    printf("\n\nMatrix is not skew symmetric");
    getch();
    exit();
   }
  }
 }
 printf("\n\nMatrix is skew symmetric");
 getch();

}


CODING
OUTPUT


For any query or suggestion please comment below...

No comments:

Post a Comment