putchar (1) 썸네일형 리스트형 C언어 출력 함수들 int puts(const char* str); str+\n(개행) 문자열을 출력합니다. int putchar(int character); 문자 한 개를 출력합니다. int _cputs(const char* str); puts와 비슷하지만 개행 문자를 같이 출력하지 않습니다. ※ 이 함수는 conio.h 헤더를 포함해야 합니다. conio.h 헤더는 윈도우에만 있으므로 윈도우에서만 사용할 수 있습니다. 참고 : https://msdn.microsoft.com/ko-kr/library/3w2s47z0.aspx http://www.cplusplus.com/reference/cstdio/puts/ http://www.cplusplus.com/reference/cstdio/putchar/ 이전 1 다음