056. 문자열 출력하기(puts)056. 문자열 출력하기(puts)

Posted at 2011. 1. 30. 17:45 | Posted in Computer/초보자를 위한 C 언어 300제
#include <stdio.h>

#define KOREA "대한민국"
#define SUMMER "여름"

void main( void )
{
	const char* winter = "겨울";

	puts( KOREA );
	puts( SUMMER );
	puts( winter );
}
//