검색결과 리스트
개발&교육/c언어에 해당되는 글 1건
글
C언어: gcc 경고 메시지 - warning: no newline at end of file 해결 방법
개발&교육/c언어
2012. 11. 8. 16:22
gcc 경고 메시지 - warning: no newline at end of file
-> 파일의 끝에 개행문자가 없음
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}<EOF>
-> warning: no newline at end of file 발생
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
<Enter>
<EOF>
-> 컴파일 성공