What's wrong with this code?

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
include <stdio.h> should be: #include <stdio.h> // note the #
Topic archived. No new replies allowed.