I have the following program:
int main(int argc, char *argv[]) { char ch1, ch2; printf(\"Input the first character:\"); // Line 1 scanf(\"%c\", &ch
I am surprised nobody mentioned this:
scanf("%*[^\n]");