Search:

Type: Posts; User: Meldreth

Search: Search took 0.01 seconds.

  1. if it's so much easier why is your output...

    if it's so much easier why is your output different from mine? ;) to get the same result you have to start on the nth index instead of 0 and because nth is 1 based you can't forget to add 1 to the...
  2. the easiest way is with a loop. #include...

    the easiest way is with a loop.


    #include <stdio.h>
    #include <stdlib.h>

    void save_nth(FILE *fp, int *a, int sz, int nth);

    int main()
    {
Results 1 to 2 of 2