5. Write a c program to find out transport of a matrix.
6. Write a c program for scalar multiplication of matrix.
7. C program to find inverse of a matrix
8. Lower triangular matrix in c
9. Upper triangular matrix in c
10. Strassen's matrix multiplication program in c
11. C program to find determinant of a matrix
12. Big list of c program examples
6. Write a c program for scalar multiplication of matrix.
7. C program to find inverse of a matrix
8. Lower triangular matrix in c
9. Upper triangular matrix in c
10. Strassen's matrix multiplication program in c
11. C program to find determinant of a matrix
12. Big list of c program examples
28 comments:
nice
why not published the algorithm.
thanks bro........
jai maharashtra
its nice
thank u so much
good one
i think its wrong
very-2 gud solution of dda example of c lang.
You have just saved my life.
Thank you!
thak you SO much!!
I had a doubt on what gets added with what..
thnx 4 the crystal clear expanation!
NICE ONE. THANX FOR D HELP
mass!!!thanks...
I am P.Gowrimanogari i have one doubt in c program if i give my name means in input means the entier output screen have to display as for eg: GOWRI .can u tell what concept i have to use????
Shouldn't you check first that whether the give 2 matrices are equal using if-else statements by comparing rows and columns? As only 2 matrice with same no of rows and columns can be added.
Ran the program.It ran into infinite loop
you can easily input a string and print it using %s specifier and use loop to display it many times....
thanks.....
void main()
{
int num[2][3],r,c;
clrscr();
for(r=0; r<2; r++)
{
for(c=0; c<3; c++)
{
printf("\n enter no.");
scanf("%d",&num[r][c]);
}
}
for(r=0; r<2; r++)
{
printf("\n");
for(c=0; c<3; c++)
{
printf("%d",num[r][c]);
}
}
getch();
}
enter no.7
enter no.6
enter no.5
enter no.4
enter no.3
enter no.2
765
432
thanks yaar..
It's too long
good..thank u so much
the program is infront of you
how can we add 2 matrices without using forloop...........?
i want the prog for square matrix can anyone help me?
can you please drow flow charT ?/
excellent thank u soo much
Thangs
can anyone tell me why they used pf('/n') after for(i=0,i<3,i++) and what does '/n' indicate in c language
Post a Comment