Search:

Type: Posts; User: Lawn Gnomusrex

Search: Search took 0.01 seconds.

  1. Ok, thank you! I appreciate it. :)

    Ok, thank you! I appreciate it. :)
  2. Ok, so I would have to do this? for(int i =...

    Ok, so I would have to do this?


    for(int i = 0; i < 10; i++) {
    delete [] forest[i];
    }
    delete [] forest;
  3. Very quick question about dynamic arrays.

    I had a very quick question about dynamic multidimensional arrays.

    If I were to create an array like this code, how would I go about cleaning it up?


    int **forest = new int *[10];
    for (int i...
  4. Replies
    5
    Views
    2,659

    Let's see if I can to answer your question. ...

    Let's see if I can to answer your question.

    Void means that the function does not have to return a value. Sometimes it wouldn't be useful or meaningful to return a value like int, double, char, or...
  5. Replies
    2
    Views
    1,673

    Alright! Thank you! You have no idea how much...

    Alright! Thank you!

    You have no idea how much this was starting to bug me.:mad:

    Everything is in perfect working order now, Thank you very much! I appreciate it! :D
  6. Replies
    2
    Views
    1,673

    A question about file streams.

    Heya, everybody!

    I have question: How do I work with multiple input files?

    I've been working on a program for about a week now, and I thought I finaly had it all figured out. It takes a word,...
  7. Replies
    8
    Views
    3,756

    Alright, thank you!

    Alright, thank you!
  8. Replies
    8
    Views
    3,756

    A quick question about notepad.

    Hey, everybody!

    I have a really quick question: is there any limit to the size of a text file that notepad can open, other than RAM?

    I think everything below XP had something like a 32Kb limit,...
  9. Ahhh! Thank you, Elysia!:D I didn't know if...

    Ahhh! Thank you, Elysia!:D I didn't know if making something like this required more work or not.

    I appreciate the help, everyone! Thanks! :)
  10. Thank you for explaining operator char*()...

    Thank you for explaining


    operator char*() {return ptr;}


    I also see this set off a discussion that would have made my head explode if I tried to understand most of it.:eek:
    I guess the...
  11. If you remove this line: operator char*()...

    If you remove this line:


    operator char*() {return ptr;}

    the entire program won't work at all, it won't output any of the variables with cout.
    I'm just wondering how


    operator char*()...
  12. Yeah, I was really only confused about ...

    Yeah, I was really only confused about


    my_String& operator=(const my_string &object);

    and


    operator char*() {return ptr;}
  13. Help understanding how "operator char*()" works.

    Hello, everyone!
    Sorry to be a bother, but I needed some help wrapping my head around some syntax.

    I would like to apologize in advance for the long post.

    The book I'm reading from right now...
Results 1 to 13 of 13