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
- 데이터시각화
- Join
- 노마드코딩
- 알고리즘
- MySQL
- Matplotlib
- python
- openCV
- Selenium
- dataframe
- 선그래프
- type hint
- javascript
- 파이썬
- 코딩테스트
- 정보처리기사 c언어
- pandas
- NumPy
- Stack
- 백준
- Algorithm
- programmers
- queue
- 자료구조
- 가상환경
- 알고리즘 스터디
- aws jupyter notebook
- String Method
- 프로그래머스
- 알고리즘스터디
Archives
- Today
- Total
목록c언어 struct (1)
조금씩 꾸준히 완성을 향해
[C 언어] 구조체(struct)
구조체 - 여러 변수들을 모아서 하나의 객체를 구성할 때 사용하는 사용자 정의 타입 객체 구조체 구성 struct 구조체명 { 멤버변수1; 멤버변수2; } 구조체 정의 및 사용 #include //정의 int main(){ struct person { char *name; int age; }; //생성 struct person user1; user1.name = "h user"; printf("%s", user1.name); } // h user #include //정의+생성 int main(){ struct person { char *name; int age; } test; test.name = "h user"; test.age = 40; printf("%s: %d", test.name, test.ag..
기타 언어/C 언어
2023. 3. 22. 15:03