Why doesn’t this valid C program compile? (opens in new tab)
I wanted to use some C code I found, and when I tried to compile the source, it kept complaining because of a syntax error. ... void printMD() { printf("ABC "); int i; i = 0; printf("I is %i\n"); } ... The original code was several thousand lines long. The (first) error message was ERROR … Continue reading Why doesn’t this valid C program compile? →
Read the original article