Feb 23, 2016 at 12:14am
I'm getting the following errors:
error C2143: syntax error: missing '{' before '<'
error C2059: syntax error: '<'
1 2 3 4 5 6
|
include <stdio.h>
int main(void)
{
printf("\xA0 \xA1 \xA2 \xA3");
return 0;
}
|
Last edited on Feb 23, 2016 at 12:16am
Feb 23, 2016 at 12:20am
include <stdio.h>
should be: #include <stdio.h> // note the #