Search:

Type: Posts; User: Striker87

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    2,209

    structures and pointers and members

    struct wordPair {
    char* englishWord;
    char* foreignWord;
    };

    struct dictionary {
    struct wordPair ** data;
    int nbwords;
    int size;
    } *d;
  2. Replies
    3
    Views
    3,821

    Thank you very much CommonTater! All I have to...

    Thank you very much CommonTater! All I have to do is adjust the spacing a bit and its complete.
  3. Replies
    3
    Views
    3,821

    Reversing Words and Array of Pointers

    I've been working on a program that will take an array of pointers that contains multiple strings and print those strings out with the words in reverse order.

    For example, if the array is:

    ...
Results 1 to 3 of 3