Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- mysql
- ListBox
- 도움말
- win32
- mfc 실습
- C
- 마이크로소프트
- 정보처리기사
- 핵심 요약
- 포트폴리오
- MyTread
- Time
- C++
- 미가공
- 별찍기
- tips강좌
- visual
- MFC 예제
- MFC
- 김성엽
- do it c
- 정처기 독학
- 충무창업큐브
- Tipsware
- 실습
- C언어
- 유료강좌
- SSG
- MyThread
- linux
Archives
- Today
- Total
목록struct (1)
History

#include #include #include struct Point2D { int x; int y; }; int main() { struct Point2D* p1 = (Point2D*)malloc(sizeof(struct Point2D)); struct Point2D* p2 = (Point2D*)malloc(sizeof(struct Point2D)); p1->x = 10; p1->y = 20; memcpy(p2, p1, sizeof(struct Point2D)); printf("p2->x= %d p2->y= %d\n", p2->x, p2->y); free(p1); free(p2); return 0; } 위 코드는 p1에 입력된 구조체 값을 통째로 p2에 복사한 후 p2를 출력하는 코드이다. 이러한 방..
C,C++/개념 실습 프로그래밍
2022. 9. 25. 19:20