Search:

Type: Posts; User: Matticus

Search: Search took 0.04 seconds.

  1. This code is different. Is it not working for...

    This code is different. Is it not working for you?
  2. default: if(isalpha(c) || isdigit(c)) ...

    default:
    if(isalpha(c) || isdigit(c))
    ++nother;
    if(c = EOF) // <--- You have the wrong operator here, you want ==
    break;




    This is simple enough that if you're having...
  3. "getchar()" will return an integer value that...

    "getchar()" will return an integer value that represents the code for the character entered. It looks like you want to check if that character is a numeric symbol (i.e. 1, 2, 3, etc). Therefore,...
Results 1 to 3 of 3