Search:

Type: Posts; User: kowit010

Search: Search took 0.00 seconds.

  1. Replies
    21
    Views
    7,751

    Listen, punk, I HAVE been posting my *actual*...

    Listen, punk, I HAVE been posting my *actual* code, I have even been posting edits I've made and telling you where I've been putting them. If you are not smart enough to understand what that means,...
  2. Replies
    21
    Views
    7,751

    When I do this: int main(void) {...

    When I do this:



    int main(void)
    {
    menu();
    while (ch != '4')
    {
    switch (getchar())
  3. Replies
    21
    Views
    7,751

    Nope, that didn't work because now I cannot exit...

    Nope, that didn't work because now I cannot exit when I enter 4.
  4. Replies
    21
    Views
    7,751

    That's exactly the model I used and it made...

    That's exactly the model I used and it made absolutely no difference. The getchar() function is causing problems for me which is why I have to use int.
  5. Replies
    21
    Views
    7,751

    What commontater posted, that is

    What commontater posted, that is
  6. Replies
    21
    Views
    7,751

    Like this stuff posted above: int quit =...

    Like this stuff posted above:



    int quit = 0;
    while (! quit)
    {
    // display menu

    switch ( getchar() )
  7. Replies
    21
    Views
    7,751

    I tried that and it made no difference. Any...

    I tried that and it made no difference. Any integer I used yields me the error message and it still does the cascading error when I enter a letter or symbol.
  8. Replies
    21
    Views
    7,751

    Nasty Char-Input-into-Int Bug

    In this array program I have due on Tuesday in my C programming course at school (which includes a menu function), I have tested this compiled program for any bugs. One major problem I found is the...
Results 1 to 8 of 8