프로그래밍

 3198, 1/160 회원가입  로그인  
   ewqqw
   소스와 결과가 같은 소스코드

http://www.hackerschool.org/HS_Boards/zboard.php?AllArticle=true&no=6571 [복사]


도저히 생각이 나질 않습니다 ㅠㅠ
예시

소스 :
결과 :
(소스로 빈 문자열을 입력하면 결과로 빈 문자열이 나오는 간단한 소스코드)

  Hit : 5042     Date : 2017/03/08 07:30



    
jssok8733 #include <stdio.h>
#include <string.h>

int main(void)
{
char s[10]={0};

getchar();
puts(s);
return 0;
}
2017/05/08