C/C++언어에서 가장 기본적인 명령이 출력문이다. printf()를 이용해 다음 단어를 출력하시오.
Hello
#include <iostream> int main() { std::cout << "Hello" <<std::endl; }