do

suggest change

Introduces a do-while loop.

// Gets the next non-whitespace character from standard input
char read_char() {
    char c;
    do {
        c = getchar();
    } while (isspace(c));
    return c;
}

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents