나는이 프로그램을 썼다 :
#include<stdio.h>
int main()
{
printf(“Hello World\n”);
return 0;
}
나는 그것을 저장하고 first.c
컴파일하려고했지만이 문제를 수신하면 gcc 컴파일러도 설치했습니다.
$ gcc first.c -o first1
first.c: In function ‘main’:
first.c:4:1: error: stray ‘\342’ in program
first.c:4:1: error: stray ‘\200’ in program
first.c:4:1: error: stray ‘\234’ in program
first.c:4:11: error: ‘Hello’ undeclared (first use in this function)
first.c:4:11: note: each undeclared identifier is reported only once for each function
it appears in
first.c:4:17: error: expected ‘)’ before ‘World’
first.c:4:17: error: stray ‘\’ in program
first.c:4:17: error: stray ‘\342’ in program
first.c:4:17: error: stray ‘\200’ in program
first.c:4:17: error: stray ‘\235’ in program
이 문제를 어떻게 해결할 수 있습니까?