User Profile

Collapse

Profile Sidebar

Collapse
Nanthini Rajendiran
Nanthini Rajendiran
Last Activity: Mar 19 '07, 09:09 PM
Joined: Mar 19 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Nanthini Rajendiran
    replied to matrix multiplication code
    in C
    Amit I have told you the program.just work on th logic Behind it and try to modify the program......
    See more | Go to post

    Leave a comment:


  • Nanthini Rajendiran
    replied to matrix multiplication code
    in C
    Hi amrit...Iam writing the simple matrix multiplication code for you without using pointers...
    Code:
    /* Description:To multiply given to matrix using arrays*/
    #include<stdio.h>
    #include<math.h>
    main()
    {
      int i,j,k;
     int a,b,c;/*three variables to get the row and colum of the two matrix*/
     int sum;
     int m[10][10],n[10][10],l[10][10];
     printf("The first matrix:\n");
    ...
    See more | Go to post
    Last edited by horace1; Mar 19 '07, 09:56 PM. Reason: added code tags

    Leave a comment:

No activity results to display
Show More
Working...