Search:

Type: Posts; User: Salem

Search: Search took 0.21 seconds.

  1. Replies
    14
    Views
    1,858

    Resume here ->...

    Resume here -> http://cboard.cprogramming.com/c-programming/151100-short-matrix-problem.html
  2. Replies
    14
    Views
    1,858

    Perhaps you should be more consistent with your...

    Perhaps you should be more consistent with your choice of loop variables, and loop limits.


    for( i = 0 ; i < c ; i++ )
    for( d = 0 ; d < m ; d++ )
    // vs
    for(i=0; i<c; i++)
    ...
  3. Replies
    14
    Views
    1,858

    > what should i do? Lookup on google what the...

    > what should i do?
    Lookup on google what the general approach for an X by Y matrix is, and then write the code for it.
    Matrix multiplication - Wikipedia, the free encyclopedia

    Mostly, it would...
  4. Replies
    14
    Views
    1,858

    History reference for the regulars -> Entering A...

    History reference for the regulars -> Entering A Matrix - C And C++ | Dream.In.Code
Results 1 to 4 of 4