:: 게시판
:: 이전 게시판
|
- 모두가 건전하게 즐길 수 있는 유머글을 올려주세요.
- 유게에서는 정치/종교 관련 등 논란성 글 및 개인 비방은 금지되어 있습니다.
통합규정 1.3 이용안내 인용"Pgr은 '명문화된 삭제규정'이 반드시 필요하지 않은 분을 환영합니다.법 없이도 사는 사람, 남에게 상처를 주지 않으면서 같이 이야기 나눌 수 있는 분이면 좋겠습니다."
15/02/03 17:50
게임 공략 올려드릴게요
#inlcude <stdio.h> int main() { printf("Hello, World "); retrun 0; } 요렇게 하시면 엔딩
15/02/03 19:40
Line 1: error: invalid preprocessing directive #inlcude
In function 'main': Line 5: error: 'retrun' undeclared (first use in this function) Line 5: error: (Each undeclared identifier is reported only once Line 5: error: for each function it appears in.) Line 5: error: expected ';' before numeric constant
15/02/03 19:41
/* 수정한 코드 */
#include <stdio.h> int main() { printf("Hello, World "); return 0; }
|