Skip to content
Snippets Groups Projects
Commit 75adb903 authored by yun hwak byeon's avatar yun hwak byeon
Browse files

Upload New File

parent 803a8415
No related branches found
No related tags found
No related merge requests found
P.c 0 → 100644
#include <stdio.h>
int main() {
int c;
// 표준 입력(stdin)에서 데이터를 읽어와서 표준 출력(stdout)으로 출력합니다.
while ((c = getchar()) != EOF) {
putchar(c);
}
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment