Search:

Type: Posts; User: Thanksbro

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    1,145

    I see what you are getting at, but my if...

    I see what you are getting at, but my if statement does solve one of my problems. However, I have just solved the problem of double printing. while(command = getchar() != '\n'); takes care of it....
  2. Replies
    10
    Views
    1,145

    if(*row < START||*col < START||*row >= MAXR) ...

    if(*row < START||*col < START||*row >= MAXR)
    return FALSE;
    implying that you can't have a row or column less then 0 and that you can't have a row greater or equal to the maximum row.
  3. Replies
    10
    Views
    1,145

    In the driver I have if the function coordinate...

    In the driver I have if the function coordinate is true, print the coordinates. Otherwise print invalid command.
  4. Replies
    10
    Views
    1,145

    but if that is the case, shouldn't it print the...

    but if that is the case, shouldn't it print the new coordinate and then invalid command?
  5. Replies
    10
    Views
    1,145

    Wondering where the error is D:

    Hey guys, I'm coding a function for a game somewhat like minesweeper and I have encountered a problem. How this function is suppose to work is the user gives it a movement command and if it is a...
  6. Replies
    3
    Views
    1,237

    Figured it out. Thanks!

    Figured it out. Thanks!
  7. Replies
    3
    Views
    1,237

    Not sure where the problem is

    Hello, i'm working on part of a simplistic calculator and encountered a problem. The function that im working on is given an integer and prints it. It works for any number as long as it does not...
Results 1 to 7 of 7