태그 : cpp 요약보기전체보기목록닫기

1

Allegro/STL Tutorial Ch.5

Chapter 5 5. STL Basics 5.1 C++ Templates Another thing that C++ offers is the concept of templates. In many ways, templates have many things in common with macros, but are processed by the...

Allegro/STL Tutorial Ch.4

Chapter 4 4. OOP Basics 4.1 Object-Oriented Programming The OOP paradigm is based on the human way to think of things, that each object in the known universe has within itself its propertie...

Allegro/STL Tutorial Ch.1

Chapter 1 1. Basics 1.1 Using RHIDE to write our first C++ program First, you should create a new directory for this tutorial. When you have done so, start RHIDE from within it. The RHIDE s...

으하하하, 머드(MUD)게임을 만들어보자 : )

http://www.rdxgames.net/projects/wrathlands/index.html 출장 끝나서 집에 가면, 함 따라서 만들어 봐야겠다 : )

C++? C++!

다음과 같은 코드를 봤더랬다.    struct AAAA: std::unary_function<BBBB<CAA>*, void>    {       AAAA(         ...

C/C++ 차이?

Cvoid test(void){  int a = 3; //ok  int b;  b = 3; //ok  int c; //err  ...}C++void test(void){  int a = 3; //ok  int b;  b = 3; //ok  int c; //ok  ....

아놔! NULL!!!!!!!

...니가 C를 아냐 응! .... NULL과 0으로 하루를 버린 사람은 느낄것이다. 이색귀들이 존내 틀리다는것을... 이런 십쉐리- _-. CPP #define NULL    0 C #define NULL    ((void*)0) 으허헝~ ㅠ_ㅜ
1