Codeup.kr/C언어 기초 100제

[Code up 문제] 1001번 출력하기 01번

Jongung 2021. 9. 1. 20:53

 

문제 설명

 

 

 

1. 정답 코드

#include <stdio.h>

int main()
{
	printf("Hello");
	return 0;
}

 

2. 코드 설명

기본 구조 stdio.h (standard input output.header)를 포함하고 

Hello를 출력하면 되는 간단한 코드를 작성하면 된다.