반응형
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 | 31 |
Tags
- Level1
- OS
- 백준
- 고득점Kit
- VUE
- dp
- typescript
- Medium
- 파이썬
- C++
- 웹프로그래밍
- 자바스크립트
- 프로그래밍
- 동적계획법
- javascript
- react
- 카카오
- 리트코드
- 배열
- web
- Level3
- 리액트
- 코테연습
- LeetCode
- CS
- sql
- 프로그래머스
- python
- Doitvue.js입문
- Level2
Archives
- Today
- Total
[c++] structor(구조체) 본문
반응형
- 구조체 배열
struct Student { int id;//4 char name[20];//1 float grade[2];//8 }; int main() { Student sinfos[4] = { {202001,"Lee",{4.3f,4.1f}}, {202001,"Choi",{4.3f,4.1f}}, {202001,"Park",{4.3f,4.1f}}, }; for (auto i = 0; i < 4; i++) { cout << sinfos[i].id << endl; cout << sinfos[i].name << endl; cout << sinfos[i].grade[0] << endl; cout << sinfos[i].grade[1] << endl; } return 0; }
2. 구조체 포인터
struct Rectangle {
int x, y;
int w, h;
};
int main() {
Rectangle r = { 15,10,50,70 };
Rectangle* pr = &r;
cout << r.x << " "<< (*pr).x << endl;
cout << (*pr).y << " " << pr->y << endl;
}
-
LinkedList
struct LinkedList { int data; LinkedList* p; }; int main() { LinkedList a, b, c; a.data = 99; a.p = &b; b.data = 93; b.p = &c; c.data = 94; c.p = &a; cout << c.data << endl; cout << b.p->data << endl; cout << (*b.p).data << endl; cout << a.p->p->data << endl; cout << c.p->p->p->data << endl; return 0; }
반응형
'객체지향프로그래밍 (C++)' 카테고리의 다른 글
[c++] 데이터 표현 (0) | 2020.07.07 |
---|---|
[c++] Union (공용체) (0) | 2020.07.07 |
[c++] Pointer (포인터) (0) | 2020.07.07 |
[c++] inline variable (0) | 2020.07.07 |
[c++] class , object ( 클래스, 객체) (0) | 2020.07.07 |
Comments