Posts

Write a C program for multiplication of two m*n matrices.

Write a ‘C’ program for multiplication of two m*n matrices. #include<stdio.h> #include<conio.h> void main() {    int m,n,p,q,i=0,j=0;    int a[10][10],b[10][10],c[10][10];    clrscr();    printf("enter the number of row: ");    scanf("%d",&m);    printf("enter the number of column :");    scanf("%d",&n);    printf("enter the first matrix elements\n");    for(i=0;i<m;i++)    {       for(j=0;j<n;j++)       { scanf("%d",&a[i][j]);       }    }    printf("enter the number of row: ");    scanf("%d",&p);    printf("enter the number of column :");    scanf("%d",&q);    printf("enter the second matrix elements\n");    for(i=0;i<p;i++)    {       for(j=0;j<q;j++)       {...

C program to accept n number from user store these numbers into an array and sort the numbers of an array.

Write a C program to accept ‘n’ number from user, store these numbers into an array and sort the numbers of an array. #include<stdio.h> #include<conio.h> void main() {   int n,a[20],i,j,temp;   clrscr();   printf("\n ENTER HOW MANY NO U WANT");   scanf("%d",&n);   printf("enter the elements\n");   for(i=0;i<n;i++)   {    scanf("%d",&a[i]);   }   for(i=0;i<n;i++)   {     for(j=i+1;j<n;j++)     {       if(a[i]<a[j])       {   temp=a[i];   a[i]=a[j];   a[j]=temp;       }     }    }    printf("\nSORTED ARRAY ELEMENTS \n");    for(i=0;i<n;i++)    {      printf("%d\t",a[i]);    }    getch();   }