I wrote a program that accepts a character of input and outputs that character, like this
int ch = getchar();
printf("%c", ch);
It worked like I expected. Then I decided to be welcoming and print Hello first.
printf("Hello!\n");
int ch = getchar();
printf("%c", ch);
To my surprise, this caused the compiler to throw two errors:
error C2065: 'ch' : undeclared identifier
error C2143: syntax error : missing ';' before 'type'
I didn't see why adding the first line would cause that to happen. Anyway, I refactored the program to get rid of the int declaration and the errors magically disappeared.
printf("Hello!\n");
printf("%c", getchar());
What's going on? What's the magic that causes these errors to appear and then disappear?
