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
- 포인터
- libft
- 패킹
- 함수
- 42서울
- 동적할당
- While
- Double
- Class
- vs코드 단축키
- ft_server
- 자료형
- 42Seoul
- float
- for
- jupyter 단축키
- list
- 42
- else if
- python
- 2차원배열
- nginx
- 구조체
- cout
- C언어
- C++
- 42cursus
- phpmyadmin
- iF
- docker
Archives
- Today
- Total
목록struct (1)
Developer
20.(C언어) 구조체(1)
구조체란 서로 다른 자료형의 여러 변수들을 하나의 묶음으로 사용할 수 있게 해준다. 기본 자료형을 조합해서 새로운 자료형을 만든다고 생각하면 된다.학생의 정보를 관리하기 위해 구조체를 사용해 보자. 정보 항목은 이름, 전화번호, 학번 3가지만 하겠다. #include #include struct Student{ char name[30]; //이름 char phone_number[30]; //전화번호 int student_id; //학번 }; int main(){ struct Student s; strcpy(s.name,"김모군"); strcpy(s.phone_number,"010-xxxx-xxxx"); s.student_id=123456; printf("%s\n",s.name); printf("%s\n"..
Programming Language/C
2020. 8. 1. 21:49