//------포함하다----------------
//****************************************
#include <stdio.h>//standard input/output header (표준입출력)
//****************************************
//main함수
//진입점 함수!! ---> 프로그램의 시작함수.
//****************************************
void main()
{
printf("표준입출력\n");
getch();
}
/******************************************
From SM Bit