You can't wrap lines in code. The compiler is getting to the end of the last printf line (which ends at Have) and never sees a closing quote so it gives you the first error. Then, it tries continuing. The first thing it sees on the second line is fun! (which keep in mind is now not in a string), and that's not valid C code. So you get the rest of the errors.
No comments:
Post a Comment