『Lena's by ☆볶기!!』: Restart !!

Rorolena
1-1 C++ 사용 기본기능-시작 Hellow world

-/1. hello world/-

프로그램 입문하기
-----------------------------------------------------------------------
#include <iostream>
using namespace std;

int main()
{
   cout << "Hellow, World\n";

   return 0;
}
-----------------------------------------------------------------------
point

1. cout 이라는 것은
콘솔 출력(Console Output)의 약자
문자를 출력할때에는 "" 을 넣어줄것!

2. cout 과같은 객체를 사용 하려면
객채관한 정보를 포함한 참조 파일이필요
(iostream 에 있음)

3. namespace std 라는것은
이하의 사용하는 객체를 다른 같은 객체와
분리시키기 위하여 std에 소속을 시키는것

4. ;(세미콜론)은 마침표