Search:

Type: Posts; User: aeolusaether

Search: Search took 0.01 seconds.

  1. @tabstop: Going off of what you said about...

    @tabstop: Going off of what you said about punctuation, here's this:


    void remove_punct_and_make_lower_case(char *buf)
    {
    char *src = buf, *dst = buf;

    while (*src)
    {
    if...
  2. This topic is now resolved. The code that I...

    This topic is now resolved.

    The code that I posted above can be successfully compiled with g++, via Cygwin on a Windows system. (Thanks for the heads up, vart).

    It returns errors with or...
  3. Not really sure what you mean... I use GCC via...

    Not really sure what you mean...

    I use GCC via Cygwin, as well as Visual Studio 2010 to compile my C++. Does that help?
  4. Fix basic error: no match for 'operator!=' in 'i != ...

    Hello all at Cprogramming. I'm hoping someone can help me with this error. It probably involves changing one line... or I've made a stupid mistake or something. I've never seen the error before...
  5. tabstop, do you think you could provide me with a...

    tabstop, do you think you could provide me with a snippet or an example of using scanf to pull text from a text file? I believe I will be going with a list, since I can't use an array. Mapping seems...
  6. Help with finding word frequency in a text file.

    I'm pretty new to this forum, although I have run into cprogramming from time to time when Googling. That may make me a lurker. Anyways:
    I need help with a homework assignment, which I haven't been...
Results 1 to 6 of 6