백준

[11718] 그대로 출력하기

Jcoder 2017. 4. 21. 23:04


#include<stdio.h>
int main()
{
char s[101];
s[0] = '\0';
while (fgets(s, 100, stdin))
{
printf("%s", s);
s[0] = '\0';
}
return 0;
}