[출처] http://www.winapi.co.kr/ApiBoard/content.php?table=tblqa&pk=13489FormatMessage()라는 함수인데, GetLastError()로 얻은 에러 코드가무슨 에러인지 알고 싶으면???char buffer[128];FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(),NULL, buffer, 128, NULL);MessageBox(hWnd, buffer, "Error", MB_ICONHAND); 에러코드와 대응 상수 ----------------------------------------NO_ERROR equ 0ERROR_SUCCESS equ 0ERROR_INVALID_FUNCTION e..
파이프 IPC 통신 소스,http://dakuo.tistory.com/90
7.1 Abstract Data Types (추상적데이터타입) 7.2 Object-Oriented Programming (객체지향프로그래밍) 7.3 Introduction to Classesclass Square { private: int side; public: void setSide(int s) { side = s; } int getSide() { return side; } }; 7.4 Introduction to ObjectsSquare sq1, sq2; 7.5 Defining Member Functions 7.6 Constructors (생성자) 7.7 Destructors (소멸자) 7.8 Private Member Functions 7.9 Passing Objects to Functions p..
8.1 Arrays Hold Multiple Valuesint tests[ISIZE]; 8.2 Accessing Array Elementstests[0] = 79;cout > tests[1];tests[4] = tests[0] + tests[1];cout tests[0]; 8.4 Array Initializationconst int ISIZE = 5;int tests[ISIZE] = {79,82,91,77,84}; 8.5 Processing Array Contentsif (principalAmt[3] >= 10000) interest = principalAmt[3] * intRate1; else interest = principalAmt[3] * intRate2;tests[i]++; // adds 1 t..
- statc_cast- const cout 기본 입출력http://young_0620.blog.me/50189720699- setw(x)- fixed- setprecision(x)- showpoint- left, right // This program illustrates the use of the left and right manipulators.#include #include // Needed to use stream manipulators#include using namespace std; int main(){ string month1 = "January", month2 = "February", month3 = "March";int days1 = 31, days2 = 28,days3 = 31; d..
시험은 오픈북?, ~~~ - CPP 파일에서 컴파일, 링크, exe 파일 만드는 과정을 알자.- 키워드, Write a program to calculate how much a student center earns during its fund raising lemonade sale. The Program should prompt the user to enter the number of lemonades sold and the amount the student center earns for each lemonade sold. It should then calculate and display the total amount earned. - using namespace std?? - \t \a \\ \' \'..
- Total
- Today
- Yesterday
- 3만원대
- 가성비
- 호텔
- 에러
- 겨울러그
- 겨울
- problem
- 단열벽지
- 원소술사
- 디아블로4
- 오미크론
- 수원
- 24년
- 코인
- Algorithm
- 엔진오일
- Algorithm Schedule
- 오픽
- 캠핑
- 다이나믹 프로그래밍
- 삼성전자
- 컴인워시
- 맛집
- 쿠팡
- NFT
- 해결방법
- 데이터사이언스
- python
- 레스토랑
- 여름
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |