Search:

Type: Posts; User: Pat010101

Search: Search took 0.00 seconds.

  1. thanks, i got it to work.

    thanks, i got it to work.
  2. Here: #include #include...

    Here:

    #include <iostream>
    #include <stdlib.h>
    #include <string.h>

    #define maxWord 3

    int main(int argc, char *argv[])
    {
  3. I added this: char tmp[10]; It had not...

    I added this:

    char tmp[10];
    It had not affect, i still couldnt use chocie 1.
  4. yes.

    yes.
  5. I tried making [/color]* word[2]; into ...

    I tried making
    [/color]* word[2];
    into
    [/color]* word[3];
    But the program crashed when i tried it.

    I tried doing [/color]* word[maxword];
    but it also crashed.
  6. I thought it was working. Now 2 and 3 work but...

    I thought it was working. Now 2 and 3 work but choice #1 doesnt:


    #include <iostream>
    #include <stdlib.h>
    #include <string.h>

    #define maxWord 3

    int main(int argc, char *argv[])
  7. thanks

    thanks
  8. 1 last question, i tried going over 2 possible...

    1 last question, i tried going over 2 possible choices and the third one didnt work.



    #include <iostream>
    #include <stdlib.h>
    #include <string.h>

    #define maxWord 1
  9. actually, i just put those there because after i...

    actually, i just put those there because after i put in 1 or 2, it would say "press any key to exit" I just did that for the time being until i looped it back to the start.
  10. Thank you! I got it to work correctly

    Thank you! I got it to work correctly
  11. I tried this but it came up the same : #include...

    I tried this but it came up the same :
    #include <iostream>
    #include <stdlib.h>
    #include <string.h>

    #define maxWord 1

    int main(int argc, char *argv[])
    {
    char* word[2];
  12. New to C++ have a problem with dictionary code

    Hi,
    when I choose the first choice in this program, "1"
    it will come up with nothing. If I put in the second choice "2" it gives the defonition. How can i get it so It will do all choices, not...
Results 1 to 12 of 12