Search:

Type: Posts; User: whiskybrah

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    8,573

    Remove trailing whitespace

    The two approaches that come to mind:


    char message[20];
    fgets(message, 20, stdin);
    int stringLen = strlen(message);
    while(stringLen > 0 && isspace (s[stringLen -1])){
    stringLen--;
    }...
  2. Replies
    8
    Views
    1,644

    Else If vs Switch statement

    I'm currently doing a Computer Science course and my professor is telling us to use Else if statements instead of Switch statements. I've done some searching and have used both and I find Switch...
Results 1 to 2 of 2