Search:

Type: Posts; User: Robc

Page 1 of 7 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    116
    Views
    28,269

    The most recent email I have from you is almost a...

    The most recent email I have from you is almost a month old, and I responded to that one.
  2. Thread: pi

    by Robc
    Replies
    24
    Views
    6,669

    >Got thrown of www.computerforum.com. Does this...

    >Got thrown of www.computerforum.com.
    Does this tell us what to expect from you around here? ;)
  3. Replies
    116
    Views
    28,269

    >You know most women lie about their age to make...

    >You know most women lie about their age to make themselves young, not older
    Oh shush, you. :D
  4. Thread: dynamic ptr types

    by Robc
    Replies
    4
    Views
    2,130

    You could tuck all of the nasty stuff safely in...

    You could tuck all of the nasty stuff safely in an object to avoid switching on arbitrary attributes. That would clean up your function a bit:


    class sample_list {
    public:
    sample_list(void...
  5. Thread: dynamic ptr types

    by Robc
    Replies
    4
    Views
    2,130

    The closest match to what you want is a pointer...

    The closest match to what you want is a pointer to void. That's the generic pointer type in C++ and you can assign any pointer to it. You might have some issues with dereferencing the pointer if you...
  6. Replies
    11
    Views
    1,850

    Standard C doesn't require there to be a screen,...

    Standard C doesn't require there to be a screen, so what would this "no echo" really do when applied to a stream? What if the stream were redirected to a file? Even if you answer those questions...
  7. Replies
    116
    Views
    28,269

    >So which birthday is it? 81 or 78? 81.

    >So which birthday is it? 81 or 78?
    81.
  8. Replies
    8
    Views
    3,234

    >arrays were by far the easiest for me, then...

    >arrays were by far the easiest for me, then functions, then pointers and that is the order i was taught in.
    A collection of homogeneous objects is easier to follow for a beginner than a callable...
  9. Replies
    9
    Views
    18,376

    I got into a rather long discussion of how...

    I got into a rather long discussion of how typename works with C+++C_forever. You can search for posts by Prelude with the keyword "typename". :)
  10. Replies
    10
    Views
    1,488

    >it's strange that people first learn recursion...

    >it's strange that people first learn recursion by writing the factorial function
    Not strange at all really. As you said, it's simple and easy to trace. That makes it a good candidate for a first...
  11. Replies
    116
    Views
    28,269

    >Oh.... Um... nevermind then.... That's about...

    >Oh.... Um... nevermind then....
    That's about the reaction I was expecting. :D

    >hm.... Rob....
    Robin. :rolleyes:

    >But I know that avatar, what show is it from?
    Cowboy Bebop. :)
  12. Replies
    116
    Views
    28,269

    >RobC is now the official CProg Transvestite Not...

    >RobC is now the official CProg Transvestite
    Not that you'll believe me, but I really am a girl. :rolleyes:

    >Does this mean you're no longer the moderator of the contest forum?
    I still have...
  13. Replies
    116
    Views
    28,269

    >I'm actually really confused right now. Don't...

    >I'm actually really confused right now.
    Don't worry, I think I'm the only one who isn't. :D Let's recap and fill in the blanks. My Prelude account wasn't working right so I made a new one. Using...
  14. Replies
    3
    Views
    1,353

    It should be case :, not case::. You...

    It should be case <blah>:, not case:<blah>:. You have extraneous colons lying around. :)
  15. Replies
    10
    Views
    1,488

    Just out of curiosity, how does that function...

    Just out of curiosity, how does that function calculate a factorial recursively? It really should look a bit more like this:


    int f(int n)
    {
    if (n < 2) {
    return 1;
    }

    return n *...
  16. Replies
    116
    Views
    28,269

    I so deserved that. :D

    I so deserved that. :D
  17. Replies
    116
    Views
    28,269

    I'd really rather not go into it if it's all the...

    I'd really rather not go into it if it's all the same to you guys. :)
  18. Replies
    116
    Views
    28,269

    >But why the change in birthdays? Now thats the...

    >But why the change in birthdays? Now thats the main question
    I don't suppose you would accept me saying that it's a long story and you don't want to be bored by it?
  19. Thread: Linked Lists 101

    by Robc
    Replies
    5
    Views
    6,146

    1) In this case there's really no difference. But...

    1) In this case there's really no difference. But it's good practice to use the initializer list for constructors whenever you can. It never hurts and is sometimes a necessity, such as when...
  20. Replies
    116
    Views
    28,269

    >and how is that possible How is what possible?...

    >and how is that possible
    How is what possible? For my account to break or for me to create a new one? The former I have no clue, the latter I just log out and click the register link.
  21. Replies
    116
    Views
    28,269

    >i got it you are the the clone of Prelude My...

    >i got it you are the the clone of Prelude
    My user settings seemed to be crippled for the Prelude account, so I made a new one. :)
  22. Replies
    9
    Views
    1,401

    >I sure do wonder why noone knows how to do any...

    >I sure do wonder why noone knows how to do any searching for answers themselves.
    Why do actual work when eventually someone will do it for you? :D;)
  23. Replies
    116
    Views
    28,269

    >do you mean to tell me that it was YOU who gave...

    >do you mean to tell me that it was YOU who gave Thantos a lap dance?
    Don't tell me you actually believed that. :p
  24. Thread: What Compilier?

    by Robc
    Replies
    8
    Views
    1,538

    >P.S. Im a noob, what is modern c++? Modern C++...

    >P.S. Im a noob, what is modern c++?
    Modern C++ isn't a compiler, it's what people call code that conforms to the current ISO standard rather than code that relies on older (usually deprecated)...
  25. Replies
    27
    Views
    14,843

    >but i found the Others write as Not if they're...

    >but i found the Others write as
    Not if they're writing serious code. This nasty trick is annoyingly common and error prone. The biggest problem is that most people who use it are unaware of when it...
Results 1 to 25 of 151
Page 1 of 7 1 2 3 4