Computer/초보자를 위한 C 언어 300제
056. 문자열 출력하기(puts)
Theo Kim
2011. 1. 30. 17:45
#include <stdio.h>
#define KOREA "대한민국"
#define SUMMER "여름"
void main( void )
{
const char* winter = "겨울";
puts( KOREA );
puts( SUMMER );
puts( winter );
}