Search:

Type: Posts; User: trippeer

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    27
    Views
    5,259

    Poll: This November I will have been married for 10...

    This November I will have been married for 10 years.
  2. Replies
    5
    Views
    2,389

    The original post reminded me of an article I...

    The original post reminded me of an article I just read about the future of the OS. It is probably reckless to forecast what computers will be doing 5 years from now, but Intel is working on...
  3. Replies
    7
    Views
    1,352

    What do you mean when you say it doesn't work? ...

    What do you mean when you say it doesn't work?

    This line


    while ((c = getchar() != EOF))


    is going to cause the program to run until it recieves an EOF, so it won't terminate if you just...
  4. Replies
    4
    Views
    1,877

    We need to see the code.

    We need to see the code.
  5. Replies
    11
    Views
    3,412

    You pretty much have to have a walkthrough to...

    You pretty much have to have a walkthrough to beat the second one. There is just too much about it that is non-intuitive. I liked the first one though.
  6. Replies
    3
    Views
    2,504

    LOL. That is exactly why I am posting here...

    LOL. That is exactly why I am posting here before I jump into this.
  7. Thread: hey guys

    by trippeer
    Replies
    5
    Views
    1,672

    Your syntax is off. You want something like...

    Your syntax is off. You want something like this:



    switch(data)
    case Add: // assume that you have done an enum or a #define for Add
    Add_City( list );
    break;
    ...
  8. Replies
    3
    Views
    2,504

    Opinions on MCAD/MCSD?

    I am about to graduate with a BS in CS and I was thinking about studying up for an MCAD and maybe eventually an MCSD, but I am not sure if it is worth my time to do it if not specifically requested...
  9. Replies
    40
    Views
    10,997

    Hehe, I have never met an Australian I didn't...

    Hehe, I have never met an Australian I didn't like.
  10. Replies
    40
    Views
    10,997

    Isn't the Pope's job to spread the belief in the...

    Isn't the Pope's job to spread the belief in the Bible? Jesus specifically said that He was the only way to get to Heaven, so why should the Pope be tolerant of other beliefs? As long as the Pope...
  11. The last time the function is called, it does...

    The last time the function is called, it does indeed return a 1, but since the last function call made was a *= factorial(a-1), you will just get the second-to-last returned value times 1, which of...
  12. Replies
    2
    Views
    1,739

    Unix man pages says its ctype.h

    Unix man pages says its ctype.h
  13. Thread: Re-Learning

    by trippeer
    Replies
    19
    Views
    1,921

    You can initialize when you declare. int...

    You can initialize when you declare.



    int array[10] = {0,1,2,3,4,5,6,7,8,9};
  14. Replies
    4
    Views
    928

    I think you want to use srand as well to seed the...

    I think you want to use srand as well to seed the random number generator.

    http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?answer=1042005782&id=1043284385
  15. Replies
    29
    Views
    4,464

    I was under the impression that you can use...

    I was under the impression that you can use either an array or a pointer in this case. I thought that *str and str[0] both pointed the same place, so why is *str unacceptible here?
  16. Thread: Newbie

    by trippeer
    Replies
    7
    Views
    1,282

    Can't you just run it and find out?

    Can't you just run it and find out?
  17. Replies
    21
    Views
    7,548

    Some games can be played natively in Linux, but...

    Some games can be played natively in Linux, but from what my Linux friends tell me, most of them require that you use Wine (Windows emulator), and some of them can be a pain to configure.
  18. Replies
    5
    Views
    1,660

    What exactly are you trying to do? I can't...

    What exactly are you trying to do? I can't figure it out from your post. Are you trying to convert 0s and 1s to the appropriate ASCII values? If so, all of the ASCII values will be the same length...
  19. Replies
    45
    Views
    11,474

    Sometimes that's all there is. If someone wants...

    Sometimes that's all there is. If someone wants to do something unethical with your code, they probably won't tell you about it. If you have a bad feeling about something, or if an organization has...
  20. Replies
    8
    Views
    3,210

    I like the GUI approach - its more user friendly....

    I like the GUI approach - its more user friendly.

    By the way, how do you plan to enter the entire text of the Bible? Do you just download it somewhere or do you have it from another Bible...
  21. Replies
    12
    Views
    1,293

    This isn't a programming solution, but it is a...

    This isn't a programming solution, but it is a solution.

    Get a version of Linux that you can run off of a CD, and delete the file from there.

    You might want to look into Knoppix or Ubuntu. ...
  22. Replies
    12
    Views
    1,896

    You need to initialize num I think. You test it...

    You need to initialize num I think. You test it before it ever has a value.
  23. Replies
    6
    Views
    1,646

    Instead of checking the first character, just...

    Instead of checking the first character, just convert the input to either upper or lower case and then check that against the answer. That way it will be easier for you to control the test.
  24. For the second part, it seems to me that you want...

    For the second part, it seems to me that you want to recursively divide by 10 to break the number down to its digits, then add them up. Your test to break the recursion will be when the remainder is...
  25. Thread: Favorite Pet

    by trippeer
    Replies
    41
    Views
    8,281

    Poll: I voted dog, but we have a cat right now and she...

    I voted dog, but we have a cat right now and she is great.

    http://trippeer.com/2003/olivia.jpg
Results 1 to 25 of 32
Page 1 of 2 1 2