#include <stdio.h>
int main ()
{

int a = 100; int b = 2; int result;
result = a- b;
printf("%i\n",result);
return 0;
}
I have been running this code for the past hour, but it won't run. It says that "non-ASCII characters are not allowed outside of literals and identifiers". I need some insight into what that means and how to fix it. I would appreciate the help for I have been toiling over this for quite a while now.
You have a 
character in your code, which you can see in your code sample above. This is preventing your code from compiling. Remove it.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With