C/C++언어에서 가장 기본적인 명령이 출력문이다.
printf()를 이용해 다음 단어를 출력하시오.

Hello

 

#include <stdio.h>

int main (void)
{
    printf("Hello");
    return 0;
}
복사했습니다!