일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 싸이월드
- react native mac
- react native
- Expo
- stencil buffer
- 스탠실 버퍼 사용
- node.js
- react-native
- 스탠실 버퍼 튜토리얼
- C++
- GitHub
- unity stencil buffer
- react native 타입스크립트
- react native typescript navigate
- react native typescript
- 스탠실 버퍼 시작
- react native ios 기기 연결
- node
- 벡터와 리스트의 차이
- c++ using
- react native typescript navigation
- c++ 정보은닉
- CSS
- 리액트 네이티브 맥
- cyworld
- javascript
- 리액트 네이티브 설치 오류
- react native accessible
- html
- react
Archives
- Today
- Total
목록struct (1)
혀니의 이거저거 뿌시기
연결리스트 공부
Typedef struct s_list { void *content; struct s_list *next; // 이렇게 구조체 내에 똑같은 구조체 형식으로 다음 구조체를 가리키면 연결리스트라고 부름. } t_list; Typedef : 구조체의 별칭을 만들어주겠다. struct:구조체를 만들 것이다. 예제 1 Struct Person{ char name[20]; int age; char address[100]; } Int main() { struct Person p1; strcpy(p1.name, “홍길동”); p1.age = 30; strcpy(p1.address, “서울시 용산구 한남동”); printf(“이름 : %s \n”, p1.name); … } 요론 식으로. 예제2 Typedef struct..
LANG/C
2021. 6. 13. 16:00