Search:

Type: Posts; User: FiringBlanks

Search: Search took 0.01 seconds.

  1. I'm writing this for a C programming class- we've...

    I'm writing this for a C programming class- we've worked through everything up to this point- this was last weeks lab assignment and i haven't been able to get it to work, even though i just...
  2. I also have Visual Studio 2010 but it gives me...

    I also have Visual Studio 2010 but it gives me odd errors that otherwise work fine in Bloodshed. Also, I'm not sure if it's just me- but I find the compiler's error definitions cryptic and point...
  3. /* Fahad Shah Lab 5 10-5-11 ...

    /* Fahad Shah
    Lab 5
    10-5-11
    Functions*/


    #include <stdio.h>

    /*Prototypes*/
    int Menu(int UsersMenuChoice);
  4. Hmm... the only odd looking function I'm using is...

    Hmm... the only odd looking function I'm using is the 'switch' funciton- does that require a special library? Other than that, theres also a 'while' function in there.
  5. I've taken the apostrophes out- but shouldn't you...

    I've taken the apostrophes out- but shouldn't you tell the compiler to discard the enter key after the user enters their number? (hence, the %*c in scanf)

    It's now held up on the errors:
    [Linker...
  6. lol nice signature grumpy. Well this function...

    lol nice signature grumpy.

    Well this function runs only to validate a number entered in by the user to see if it falls into a certain range. If it doesn't, it asks for a new number that does fall...
  7. Variables Passed Into A Function, Then Compared (/=) In While Loop- Error

    int GetInt(int IntUsersNumber, int IntLowRange, int IntHighRange)
    {
    int IntUsersNewNumber;

    while (IntUsersNumber < 'IntLowRange' || IntUsersNumber >...
Results 1 to 7 of 7