"Hello.c"의 두 판 사이의 차이

6번째 줄: 6번째 줄:
int main() { printf("Hello World\n"); return 0; }
int main() { printf("Hello World\n"); return 0; }
</source>
</source>
 
<source lang='c'>
#include "stdio.h"
int main(void) {
  printf("Hello World\n");
  return 0;
}
</source>
==같이 보기==
==같이 보기==
* [[GCC a.out 대신 다른 이름 지정‎]]
* [[GCC a.out 대신 다른 이름 지정‎]]

2017년 11월 27일 (월) 16:08 판

1 개요

hello.c
#include <stdio.h>
int main() { printf("Hello World\n"); return 0; }
#include "stdio.h"
int main(void) {
  printf("Hello World\n");
  return 0;
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}