Contents

Develop
2003.04.23 11:22

[c++] namespace 사용 예

Views 8654 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
------------------------------------
#include <iostream> // iostream을 사용
using namespace std;

int main()
{
    cout << "Hi..!" << endl;
    return 0;
}
------------------------------------
#include <iostream>
using std::cout;
using std::endl;

int main()
{
    cout << "Hi..!" << endl;
    return 0;
}
------------------------------------
#include <iostream>
int main()
{
    std::cout << "Hi..!" << std::endl;
    return 0;
}
-------------------------------------


?

  1. [c] 프로세스 정보 출력하기..

  2. [c] i2osp 임시로.. ㅋㅋ

  3. [asem] CMOS 패스워드 알아내기.. 소스..

  4. [c++] namespace 사용 예

  5. [c++] template 사용예

  6. [c] 최대공약수, 최소공배수, 서로소 구하기 (펌)

  7. [c++] RSA Sample 4 CPP

  8. [js] One Time Pad key generatorㅡ.,ㅡ;

  9. [php] 웹 응용프로그램(engines) 모음

  10. [c] 간단한 점 이동 샘플 소스코드

  11. [php] 웹 터미널 & 업로드 소스..

  12. [c] 도스 공격(DoS Attack) 프로그램

Board Pagination Prev 1 ... 10 11 12 13 14 15 16 17 18 19 ... 71 Next
/ 71