Search:

Type: Posts; User: std10093

Search: Search took 0.02 seconds.

  1. Replies
    13
    Views
    1,262

    Nice!

    Nice!
  2. Replies
    13
    Views
    1,262

    Do what the other guy said. In main include the...

    Do what the other guy said. In main include the word.h file.

    Line 6 on the first post, you have


    #include "Word.c"

    Change it to this
  3. Replies
    13
    Views
    1,262

    You mean how you call it in main? You have ...

    You mean how you call it in main?
    You have


    insert(c,root,curr);

    Change it to this


    insert(c, root, curr, MAX_WRD_LENGTH);
  4. Replies
    13
    Views
    1,262

    You are welcome. void insert(char c,letter_p...

    You are welcome.


    void insert(char c,letter_p root,char curr[MAX_WRD_LENGTH], int length)
    {
    int length = strlen(curr); //THIS IS WHERE I GET STUCK!!!! it tells me "implicit conversion...
  5. Replies
    13
    Views
    1,262

    Pass the length of the array as a third...

    Pass the length of the array as a third parameter!!
Results 1 to 5 of 5