Matrix Inverse & Transpose- C Program

Program:
#include<stdio.h>
#include<math.h>
void readmatrix(int x[10][10],int);
void showmatrix(int g[10][10],int);
void transpose(int y[10][10],int);
int det(int a[10][10],int);
void inv(int a[10][10],int);
main()
{
    int a[10][10],m,p;
    printf("Enter the order of the matrix:\n");
    scanf("%d",&m);
    printf("Enter the elements for the matrix:\n");
    readmatrix(a,m);
    printf("Matrix:\n");
    showmatrix(a,m);
    printf("Transpose of the above matrix:\n");
    transpose(a,m);
    p=det(a,m);
    printf("\nDetarminant=%d\n",p);
    inv(a,m);
}
void transpose(int y[10][10],int m)
{
    int i,j;
    int t[10][10];
    for(i=0;i<m;i++)
    {
        for(j=0;j<m;j++)
        {
            t[i][j]=y[j][i];
        }
    }
    showmatrix(t,m);
}
int det(int a[10][10],int m)
{
    int i,j,k,l,dtr,b[10][10];
    if(m==1)
         return a[0][0];
    dtr=0;
    for(i=0;i<m;i++)
    {
            for(j=0;j<m-1;j++)
        {
            for(k=0,l=0;k<m-1;++k,++l)
            {
                if(i==l)
                     ++l;
                b[j][k]=a[j+1][l];
            }
        }
        dtr+=pow(-1,i)*a[0][i]*det(b,m-1);
    }
    return dtr;
}
void inv(int a[10][10],int m)
{
    int i,j,k,l,p,q,b[10][10],c[10][10],d;
    float in[10][10];
    for(i=0;i<m;i++)
    {
        for(j=0;j<m;j++)
        {
            for(k=0,p=0;k<m-1;++k,++p)
            {
                for(l=0,q=0;l<m-1;++l,++q)
                {
                    if(p==i)
                        ++p;
                    if(q==j)
                        ++q;
                    b[k][l]=a[p][q];
                }
            }
            c[i][j]=pow(-1,i+j)*det(b,m-1);
        }
    }
    d=det(a,m);
    printf("\n\nThe inverse matrix\n\n");
    for(i=0;i<m;i++)
    {
        for(j=0;j<m;j++)
        {
            in[i][j]=c[i][j];
            in[i][j]/=d;
            printf("%f\t",in[i][j]);
        }
        printf("\n");
    }
}

void readmatrix(int x[10][10],int ord)
{
    int i,j;
   
    for(i=0;i<ord;i++)
        {
        for(j=0;j<ord;j++)
            {
            scanf("%d",&x[i][j]);
            }
        }
}

void showmatrix(int g[10][10],int ord)
{
    int i,j;
        for(i=0;i<ord;i++)
        {
        for(j=0;j<ord;j++)
                    {
            printf("%d\t",g[i][j]);
            }
        printf("\n");
                }
}

Output:
nn@linuxmint ~ $ gcc c22.c -lm
nn@linuxmint ~ $ ./a.out
Enter the order of the matrix:
2
Enter the elements for the matrix:
4
2
1
3
Matrix:
4    2   
1    3   
Transpose of the above matrix:
4    1   
2    3   

Detarminant=10


The inverse matrix

0.300000    -0.100000   
-0.200000    0.400000   
nn@linuxmint ~ $

Student Record using File - C Program

Program:
#include<stdio.h>
struct student
{
    char name[20];
    int rn;
    int tm;
}s1;
int a[25];
int no,i,j,k,l,p,q,s,t;
char c;
int f=0;
FILE *fp,*ft,*fr;
main()
{
    int b;
    while(1)
    {
        printf("\n1:Create 2:List 3:Delete 4:Search 5:Sort w.r.t Roll# 6:Sort w.r.t Mark :");
        scanf("%d",&b);
        switch(b)
        {
            case 1:create();
                break;
            case 2:list();
                break;
            case 3:delete();
                break;
            case 4:search();
                break;
            case 5:sort();
                break;
            case 6:marksort();
                break;
            default:
                break;
        }
    }
}
        /*Function to insert a record*/
create()
{
    s=6;
    fp=fopen("stn.dat","a+");
    while(s==6)
    {
        fclose(fp);
        search();
        fp=fopen("stn.dat","a+");
        if(f==0)
        {
            s1.rn=no;
            printf("\nEnter student's name,mark:");
            scanf("%s %d",s1.name,&s1.tm);
            fwrite(&s1,sizeof(s1),1,fp);
        }
        printf("\n Enter 6 to create another:");
        fflush(stdin);
        scanf("%d",&s);
    }
    fclose(fp);
}
        /*Function to display all records*/
list()
{
    fp=fopen("stn.dat","r");
    printf("\n NAME ROLLNO MARK :");
    while(fread(&s1,sizeof(s1),1,fp)==1)
    {
        printf("\n%s\t%4d %4d\n",s1.name,s1.rn,s1.tm);
       
    }fclose(fp);
        }
        /*Function to delete records*/
delete()
{
    fp=fopen("stn.dat","r");
    p=1;
    while(p==1)
    {
        printf("\nEnter student's RollNo to delete:");
        scanf("%d",&no);
        ft=fopen("temp.dat","a+");
        while(fread(&s1,sizeof(s1),1,fp)==1)
        {
            if (s1.rn != no)
            fwrite(&s1,sizeof(s1),1,ft);
           
            remove("stn.dat");
            rename("temp.dat","stn.dat");
            fp=fopen("stn.dat","r+");
            printf("Enter 1 to delete another");
            fflush(stdin);
            scanf("%d",&p);
        }
        fclose(fp);
        fclose(ft);
    }
}
        /*Function to search a record*/
search()
{
    f=0;
    fp=fopen("stn.dat","r");
    printf("\nEnter RollNo:");
    scanf("%d",&no);
    while(fread(&s1,sizeof(s1),1,fp)==1)
    {
        if(s1.rn==no)
        {
            f=1;
            break;
        }
    }
    if (f==1)
    {
        printf("\nRECORD EXISTS DETAILS ARE :");
        printf("%s %d %d\n",s1.name,s1.rn,s1.tm);
    }
    else
    {
        printf("\n RECORD NOT EXISTS\n");
        fclose(fp);
    }
}
        /*Function to sort w.r.t RollNo*/
sort()
{
    fp=fopen("stn.dat","r+");
    fr=fopen("spp.dat","a+");
    i=0;
    while(fread(&s1,sizeof(s1),1,fp)==1)
    {
        a[i]=s1.rn;
        i++;
    }
    l=i;
    isort();
    for(i=l-1;i>=0;i--)
    {
        rewind(fp);
        while(fread(&s1,sizeof(s1),1,fp)==1)
            if(a[i]==s1.rn)
                fwrite(&s1,sizeof(s1),1,fr);

    }
    fclose(fp);
    fclose(fr);
    remove("stn.dat");
    rename("spp.dat","stn.dat");
}
isort()
{
    int t;
    for(j=1;j<1;j++)
    {
        for(k=j;(k>0 || (a[k-1]< a[k]));k--)
        {
            if(a[k]<a[k-1])
            {
                t=a[k];
                a[k]=a[k-1];
                a[k-1]=t;
            }
        }
    }
}
        /*Function to sort w.r.t marks */
marksort()
{
    int i;
    fp=fopen("stn.dat","r+");
    ft=fopen("smm.dat","w+");
    i=0;
    while(fread(&s1,sizeof(s1),1,fp)==1)
    {
        a[i]=s1.tm;
        i++;
    }
        l=i;
    isort();
    for(i=l-1;i>=0;i--)
    {
        rewind(fp);
        while(fread(&s1,sizeof(s1),1,fp)==1)
            if(s1.tm==a[i])
                fwrite(&s1,sizeof(s1),1,ft);
    }
    fclose(fp);
    fclose(ft);
    remove("stn.dat");
    rename("smm.dat","stn.dat");
}

Output:
    nn@linuxmint ~ $ gcc file.c
    nn@linuxmint ~ $ ./a.out

    1:Create 2:List 3:Delete 4:Search 5:Sort w.r.t Roll# 6:Sort w.r.t Mark :1

    Enter RollNo:1

     RECORD NOT EXISTS

    Enter student's name,mark:Afsal 85

     Enter 6 to create another:6

    Enter RollNo:2

     RECORD NOT EXISTS

    Enter student's name,mark:Vipin 90

     Enter 6 to create another:6

    Enter RollNo:3

     RECORD NOT EXISTS

    Enter student's name,mark:Tinu 81

     Enter 6 to create another:7

    1:Create 2:List 3:Delete 4:Search 5:Sort w.r.t Roll# 6:Sort w.r.t Mark :2

     NAME ROLLNO MARK :
    Afsal       1   85

    Vipin       2   90

    Tinu       3   81

    1:Create 2:List 3:Delete 4:Search 5:Sort w.r.t Roll# 6:Sort w.r.t Mark :6

    1:Create 2:List 3:Delete 4:Search 5:Sort w.r.t Roll# 6:Sort w.r.t Mark :2

     NAME ROLLNO MARK :
    Vipin       2   90

    Afsal       1   85

    Tinu       3   81

    1:Create 2:List 3:Delete 4:Search 5:Sort w.r.t Roll# 6:Sort w.r.t Mark :5

    1:Create 2:List 3:Delete 4:Search 5:Sort w.r.t Roll# 6:Sort w.r.t Mark :2

     NAME ROLLNO MARK :
    Afsal       1   85

    Vipin       2   90

    Tinu       3   81

    1:Create 2:List 3:Delete 4:Search 5:Sort w.r.t Roll# 6:Sort w.r.t Mark :4

    Enter RollNo:2

    RECORD EXISTS DETAILS ARE :Vipin 2 90

Matrix Operations-Addition,Subtraction,Transpose - C Program

Program:
#include<stdio.h>
void readmatrix(int x[10][10],int,int);
void sum(int y[10][10],int z[10][10],int s[10][10],int,int);
void showmatrix(int g[10][10],int,int);
void difference(int d[10][10],int y[10][10],int z[10][10],int,int);
void transpose(int t[10][10],int y[10][10],int,int);
main()
{
    int a[10][10],b[10][10],c[10][10],d[10][10],t[10][10],m,n,p,q;
    printf("Enter the order of first matrix:\n");
    scanf("%d%d",&m,&n);
    printf("Enter the order of second matrix:\n");
    scanf("%d%d",&p,&q);
    if(m==p&&n==q)
    {
        printf("Enter the elements for the first matrix:\n");
        readmatrix(a,m,n);
        printf("Enter the elements for the second matrix:\n");
        readmatrix(b,p,q);
        printf("First matrix:\n");
        showmatrix(a,m,n);
        printf("Transpose of the above matrix:\n");
        transpose(t,a,m,n);
        showmatrix(t,n,m);
        printf("Second matrix:\n");
        showmatrix(b,p,q);
        printf("Transpose of the above matrix:\n");
        transpose(t,b,m,n);
        showmatrix(t,n,m);
        sum(a,b,c,p,q);
        printf("Sum of the matrix:\n");
        showmatrix(c,m,q);
        difference(d,a,b,m,n);
        printf("Difference of the matrix:\n");
        showmatrix(d,p,q);
        }
    else
        {
        printf("Operation is not possible...\n");
        }
    }
void readmatrix(int x[10][10],int u,int v)
    {
    int i,j;
   
    for(i=1;i<=u;i++)
        {
        for(j=1;j<=v;j++)
            {
            scanf("%d",&x[i][j]);
            }
        }
    }

void sum(int y[10][10],int z[10][10],int s[10][10],int m,int n)
    {
    int i,j;
    for(i=1;i<=m;i++)
        {
        for(j=1;j<=n;j++)
            {
            s[i][j]=y[i][j]+z[i][j];
            }
        }
    }
void showmatrix(int g[10][10],int f,int d)
    {
    int i,j;
        for(i=1;i<=f;i++)
        {
        for(j=1;j<=d;j++)
                    {
            printf("%d\t",g[i][j]);
            }
        printf("\n");
                }
    }
void difference(int d[10][10],int y[10][10],int z[10][10],int m,int n)
    {
    int i,j;
     for(i=1;i<=m;i++)
                {
                for(j=1;j<=n;j++)
                        {
                        d[i][j]=y[i][j]-z[i][j];
                        }
                }
    }
void transpose(int t[10][10],int y[10][10],int m,int n)
    {
    int i,j;
    for(i=1;i<=n;i++)
        {
        for(j=1;j<=m;j++)
            {
            t[i][j]=y[j][i];
            }
        }
    }

Output:
nn@linuxmint ~ $ gcc c19.c
nn@linuxmint ~ $ ./a.out
Enter the order of first matrix:
2
2
Enter the order of second matrix:
2
2
Enter the elements for the first matrix:
9
8
7
6
Enter the elements for the second matrix:
5
4
3
2
First matrix:
9    8   
7    6   
Transpose of the above matrix:
9    7   
8    6   
Second matrix:
5    4   
3    2   
Transpose of the above matrix:
5    3   
4    2   
Sum of the matrix:
14    12   
10    8   
Difference of the matrix:
4    4   
4    4   
nn@linuxmint ~ $

String Manipulation - Substring Search & Replacement C Program

Program:
#include<stdio.h>
#include<string.h>
main()
{
   char str[40],newstr[20],substr[20];
   int len1,len2,i,j,k,t=0,len3,d=0;
   printf("Enter the string:");
   gets(str);
   printf("Enter the substring:");
   gets(substr);
   printf("Enter the new string:");
   gets(newstr);
   len1 = strlen(str);
   len2 = strlen(substr);
   len3 = strlen(newstr);
   for(i=0;i<len1;i++)
   {
     for(j=t=0,k=i;j<len2;j++,k++)
     {
        if(str[k]==substr[j])
            t++;
        else
          break;
     }
     if(t==len2)
         break;
   }
   if(t==len2)
   {
     printf("\nThe substring is found.\n");
     printf("String replaced...\n");
     if(len3>len2)
     {
       for(j=len1;j>=k;j--)
       str[j+len3-len2] = str[j];
     }
     else
     {
       for(j=k;j<=len1;j++)
       str[j-(len2-len3)] = str[j];
     }
     while(newstr[d]!='\0')
     {
       str[i] = newstr[d];
       i++;
       d++;
     }
     puts(str);
   }
   else
   {
     printf("\nSubstring not found.\n");
   }
}

Output:
nn@linuxmint ~ $ gcc c18.c
/tmp/ccqnIqKS.o: In function `main':
c18.c:(.text+0x40): warning: the `gets' function is dangerous and should not be used.
nn@linuxmint ~ $ ./a.out
Enter the string:good night
Enter the substring:night
Enter the new string:morning

The substring is found.
String replaced...
good morning
nn@linuxmint ~ $

Permutation of 'abcd ' - C Program

Program:
#include<stdio.h>
#include<string.h>
int main()
{
    int i,j,k;
    char str[20];
    strcpy(str,"abcd");
    for(i=0;i<strlen(str);i++)
        for(j=0;j<strlen(str);j++)
        {
            printf("\n");
            for(k=i;k<=j;k++)
                printf("%c",str[k]);
        }
    printf("\n\n\n");
}

Output:
nn@linuxmint ~ $ gcc c29.c
nn@linuxmint ~ $ ./a.out

a
ab
abc
abcd

b
bc
bcd


c
cd



d


nn@linuxmint ~ $

Print a Matrix Helically - C Program

Program:

#include<stdio.h>
void main()
{
    int arr[10][10],i, j, k,n,middle,size;
    printf("\nEnter the order:\n");
    scanf("%d",&size);
    printf("Enter the matrix:\n");
    for(i=0;i<size;i++)
        for(j=0;j<size;j++)
            scanf("%d",&arr[i][j]);

    for(i=size-1, j=0; i > 0; i--, j++)
    {
        for(k=j; k < i; k++)
            printf("%d ", arr[j][k]);
        for(k=j; k < i; k++)
            printf("%d ", arr[k][i]);
        for(k=i; k > j; k--)
            printf("%d ", arr[i][k]);
        for(k=i; k > j; k--)
            printf("%d ", arr[k][j]);
    }
    middle = (size-1)/2;
    if (size % 2 == 1)
        printf("%d\n", arr[middle][middle]);
  

}

Output:

nn@linuxmint ~ $ gcc c28.c
nn@linuxmint ~ $ ./a.out


Enter the order:
3
Enter the matrix:
1
2
3
4
5
6
7
8
9
1 2 3 6 9 8 7 4 5
nn@linuxmint ~ $

File Example - C Program

Program:
#include <stdio.h>
#include<string.h>
main()
{
    FILE *point;
    char str[35];
    int i, count;
    strcpy(str, "http://2k8618.blogspot.com/");
    point = fopen("file1.txt", "a");        // open in append mode
    for (count = 1; count <= 10; count++)
    {
        for (i = 0; str[i]; i++)
            putc(str[i], point); // output a single character
        putc('\n', point);       
       }
    fclose(point);
}

Output:
nn@linuxmint ~ $ gcc c26.c
nn@linuxmint ~ $ ./a.out
(file1.txt)
http://2k8618.blogspot.com/
http://2k8618.blogspot.com/
http://2k8618.blogspot.com/
http://2k8618.blogspot.com/
http://2k8618.blogspot.com/
http://2k8618.blogspot.com/
http://2k8618.blogspot.com/
http://2k8618.blogspot.com/
http://2k8618.blogspot.com/
http://2k8618.blogspot.com/

Taylor Series - C Program

Program:
#include<stdio.h>
void sinx(float,int,int);
void cosx(float,int,int);
void epowerx(int,int);
void main()
{
//    clrscr();
    float x;
    int y,n;
    printf("enter limit: ");
    scanf("%d",&n);
    printf("enter the value in degree: ");
    scanf("%f",&x);
    y=x;
    x=(3.14/180)*x;
    sinx(x,n,y);
    cosx(x,n,y);
    epowerx(y,n);
}
void sinx(float x,int n,int y)
{
    float term=x,sum=x;
    int i;
    for(i=1;i<=n;i++)
    {
        term=((-term)*(x*x))/((2*i)*(2*i+1));
        sum=sum+term;
    }
    printf("sin %d=%f\n",y,sum);
}
void cosx(float x,int n,int y)
{
    float term=x,sum=1;
    int i;
    for(i=1;i<=n;i++)
    {
        term=((-term)*(x*x))/((2*i)*(2*i-1));
        sum=sum+term;
    }
    printf("cos %d=%f\n",y,sum);
}
void epowerx(int y,int n)
{
    int i;
    float term=1,sum=1;
    for(i=1;i<=n;i++)
    {
        term=((term)*y)/i;
        sum=sum+term;
    }
    printf("e^%d=%.0f\n",y,sum);
}

Output:
nn@linuxmint ~ $ gcc c25.c
nn@linuxmint ~ $ ./a.out
enter limit: 5
enter the value in degree: 30
sin 30=0.499770
cos 30=0.929956
e^30=241231
nn@linuxmint ~ $

Base Conversion- Any Base to Any Base -C Program

Program:
#include<stdio.h>
#include<string.h>
void baseconversion(char s[20],int,int);
main()
{   
    char s[20];
    int base1,base2;
    printf("Enter the number and base:");
    scanf("%s%d",s,&base1);
    printf("Enter the base to be converted:");
    scanf("%d",&base2);
    baseconversion(s,base1,base2);
}

void baseconversion(char s[20],int b1,int b2)
{
    int count=0,r,digit,i,n=0,b=1;
    for(i=strlen(s)-1;i>=0;i--)
        {
         if(s[i]>='A'&&s[i]<='Z')
            {
             digit=s[i]-'0'-7;
            }
         else
            {
             digit=s[i]-'0';
            }
        n=digit*b+n;
        b=b*b1;
        }
    while(n!=0)
    {
        r=n%b2;
        digit='0'+r;
        if(digit>'9')
        {
            digit+=7;
        }
         s[count]=digit;
         count++;
         n=n/b2;
    }
for(i=count-1;i>=0;i--)
    {
     printf("%c",s[i]);
    }
 printf("\n");

}

Output:
nn@linuxmint ~ $ gcc anybse.c
nn@linuxmint ~ $ ./a.out
Enter the number and base:10
10
Enter the base to be converted:2
1010
nn@linuxmint ~ $ ./a.out
Enter the number and base:1010
2
Enter the base to be converted:10
10
nn@linuxmint ~ $

Base Conversion- Number (Decimal) to Any Base -C Program

Program:
//  #include<conio.h>
 #include<stdio.h>
  void main()
  {
      int b,n,i,r,digit,p,count=0;
      char a[100];// clrscr();
      printf("\nEnter the decimal number:\n");
     scanf("%d",&n);
      printf("\nEnter the base to be converted:\n");
    scanf("%d",&b);
      p=n;
      do
    {
        r=p%b;
        digit='0'+r;
        if(digit>'9')
            digit=digit+7;
        a[count]=digit;
        count++;
        p=p/b;
         } while(p!=0);
      printf("\nbase %d equivalent of num %d is ",b,n);
      for(i=count-1;i>=0;--i)
        printf("%c",a[i]);
    printf(".\n");
//  getch();
  }

Output:
nn@linuxmint ~ $ gcc c16.c
nn@linuxmint ~ $ ./a.out

Enter the decimal number:
10

Enter the base to be converted:
2

base 2 equivalent of num 10 is 1010.
nn@linuxmint ~ $ ./a.out

Enter the decimal number:
10

Enter the base to be converted:
8

base 8 equivalent of num 10 is 12.
nn@linuxmint ~ $ ./a.out

Enter the decimal number:
15

Enter the base to be converted:
16

base 16 equivalent of num 15 is F.
nn@linuxmint ~ $

Sort String Lexicographically

Program:
#include<stdio.h>
#include<string.h>
main()
{
    char s[20][20],t[20];
    int i,j,n;
    printf("Enter the number of strings:\n");
    scanf("%d",&n);
    printf("Enter the strings:\n");
    for(i=0;i<n;i++)
        scanf("%s",s[i]);
    for(i=0;i<n;i++)
        for(j=i+1;j<n;j++)
        {
            if(strcmp(s[i],s[j])>0)
            {
                strcpy(t,s[i]);
                strcpy(s[i],s[j]);
                strcpy(s[j],t);
            }
        }
    printf("\nAfter sorting:\n");
    for(i=0;i<n;i++)
        printf("%s\n",s[i]);
}

Output:
nn@linuxmint ~ $ gcc c17.c
nn@linuxmint ~ $ ./a.out
Enter the number of strings:
5
Enter the strings:
banana
apple
guava
pineapple
orange

After sorting:
apple
banana
guava
orange
pineapple
nn@linuxmint ~ $
Related Posts Plugin for WordPress, Blogger...