Search:

Type: Posts; User: jimblumberg

Search: Search took 0.05 seconds.

  1. What are your error messages? Part of your...

    What are your error messages?

    Part of your problem is being caused by the position of your using namespace statement. This should be after all your include files. Another problem is being caused...
  2. You would use a std::string to retrieve the...

    You would use a std::string to retrieve the words.



    Show the code then maybe someone can point you in the right direction.

    Jim
  3. Looking at your file it looks like you should be...

    Looking at your file it looks like you should be using the extraction operator and not getline(). The extraction operator will extract words, getline() will extract whole lines.

    You could use a...
  4. Is there a reason you are using arrays instead of...

    Is there a reason you are using arrays instead of vectors? Vectors would make this much easier. First what happens if your file doesn't contain 10,000 strings? Most of your functions assume 10,000...
Results 1 to 4 of 4