How do I fix this lexical/preprocessor issue?
I have a lexical/preprocessor issue. Here is the statement after the issue: " Non-ASCII characters are not allowed outside of literals and identifiers. The fix that I was presented with by Xcode is to delete the "\n". I will be attaching the code below with and without the fix.
Without the fix
#include
With the fix #include <stdio.h> int main() { int age = 40; float gpa = 3.25; char grade = ‘A’: double =.000009; char companyName[20]; return 0; }
should that be 'A'; or 'A': ?
It's a complete statement, it should end with a semi-colon.
that's what i figured, but wanted to let the OP look at it
Join our real-time social learning platform and learn together with your friends!