Search:

Type: Posts; User: Happy_Reaper

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    10
    Views
    5,257

    for ( counter = 0; counter < lenght; counter++ )...

    for ( counter = 0; counter < lenght; counter++ )
    {

    if ( romanchar[counter] == 'I' && romanchar[counter+1] == 'V')
    {
    sum = sum + 4;
    counter++;
    }
  2. Your answers are in your other thread.

    Your answers are in your other thread.
  3. Replies
    7
    Views
    1,132

    Because it's not portable.

    Because it's not portable.
  4. Replies
    6
    Views
    1,158

    It means you're not telling the compiler what i...

    It means you're not telling the compiler what i is. The same goes for num. The compiler can't just guess "oh, i is an int, num is also an int" you have to declare to the compiler that they are.
    ...
  5. Replies
    3
    Views
    2,635

    That line that seems to be wrong seems awfully...

    That line that seems to be wrong seems awfully cluttered. Ever try unpacking it a little. Maybe then something will spring up...
  6. Thread: Hard Task

    by Happy_Reaper
    Replies
    4
    Views
    1,079

    Have you read the homework policy for these...

    Have you read the homework policy for these forums ?

    Here's some help :
    http://www.cprogramming.com/board.html

    Then post code, post attempts, post smart questions. Only then will you get...
  7. Have you tried putting the [Enter]'s where you...

    Have you tried putting the [Enter]'s where you want and seeing if it still compiles ?
  8. Thread: plzz help

    by Happy_Reaper
    Replies
    10
    Views
    1,242

    It's funny, there isn't a question or even a...

    It's funny, there isn't a question or even a question mark in that entire post. Haven't read the forum guidelines, now have you ?
  9. Replies
    10
    Views
    3,005

    Then you'll want to look into fork...

    Then you'll want to look into fork and the exec* family of functions.
  10. Replies
    16
    Views
    3,937

    Yeah, not to mention keep your post from being...

    Yeah, not to mention keep your post from being deleted...
  11. Replies
    16
    Views
    3,937

    I think that last word may be a little different,...

    I think that last word may be a little different, depending on Salem's mood.
  12. Replies
    10
    Views
    3,005

    The first thing you may want to tell us is what...

    The first thing you may want to tell us is what platform you're using.
  13. Replies
    11
    Views
    3,511

    I've always been satisfied with a combo of the...

    I've always been satisfied with a combo of the ZoneAlarm firewall and Spybot S&D, both of which are free.
  14. Replies
    4
    Views
    3,430

    I don't think there's a unique answer to this...

    I don't think there's a unique answer to this question, different programmers have different design methodologies, and each one has their pros and cons.

    That being said, here are some design...
  15. Replies
    11
    Views
    3,249

    I don't think I was even programming when Turbo C...

    I don't think I was even programming when Turbo C was recent...
  16. Replies
    8
    Views
    1,468

    How about you print the ASCII values of the...

    How about you print the ASCII values of the letters you're getting. My bet is there's a newline lingering around in your input buffer.
  17. Replies
    11
    Views
    3,249

    #1 This is the wrong board, it should be in the...

    #1 This is the wrong board, it should be in the C++ Board.
    #2 Not everyone here is an expert, so don't be expecting an immediate answer.
    #3 Don't bump threads. This is part of the forum...
  18. Replies
    30
    Views
    3,764

    You don't need a loop for that at all. You just...

    You don't need a loop for that at all. You just needed an if-else statement with another if-else statement nest in its else clause.
  19. Replies
    9
    Views
    2,986

    The design process is meant to reduce, not...

    The design process is meant to reduce, not eliminate, errors. So I'd imagine everyone has gone through what you are.
  20. Replies
    6
    Views
    1,270

    Right, that's what I was thinking.

    Right, that's what I was thinking.
  21. Replies
    6
    Views
    1,270

    First off, I wouldn't call your FILE* fprintf. ...

    First off, I wouldn't call your FILE* fprintf. I'm not completely sure if it does anything bad at all, but it's just asking for trouble. Name it something like fp or something.

    Then, fprintf,...
  22. Replies
    15
    Views
    6,731

    Already exists : JMonkey...

    Already exists : JMonkey
  23. Replies
    1
    Views
    1,680

    PageRank...

    PageRank

    That should cover the google stuff.
  24. Replies
    2
    Views
    1,312

    I'd search through Google Code...

    I'd search through Google Code, you're bound to find something there.
  25. Replies
    5
    Views
    1,182

    Visual Sutdio's compiler is supposedly standard,...

    Visual Sutdio's compiler is supposedly standard, although it has its own little quirks and oddities that you have to get used to. I myself prefer gcc, but if you already have visual studio, then you...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4