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
- 패킹
- python
- iF
- 포인터
- Class
- Double
- list
- 42cursus
- cout
- 동적할당
- libft
- C++
- 함수
- jupyter 단축키
- While
- phpmyadmin
- 2차원배열
- vs코드 단축키
- docker
- 42Seoul
- ft_server
- 자료형
- 구조체
- float
- for
- 42서울
- C언어
- nginx
- else if
- 42
Archives
- Today
- Total
목록구조체정렬 (1)
Developer
22.(C언어) 구조체(3)
CPU는 비트에 따라서 메모리 접근 단위가 다르다. 32비트의 컴퓨터는 32비트 단위로, 64비트의 컴퓨터는 64비트 단위로 접근한다. 대부분의 C언어 컴파일러는 CPU가 효율적으로 메모리에 접근할 수 있도록 구조체를 정렬해준다. 그럼 구조체 정렬이 무엇인지 알아보자. 구조체 정렬 #include typedef struct { //구조체 정의 char a; int b; }some; int main() { some c; //구조체 변수 선언 printf("멤버변수 a의 크기 :%d Byte\n", sizeof(c.a)); printf("멤버변수 b의 크기 :%d Byte\n", sizeof(c.b)); printf("구조체 변수 c의 크기 :%d Byte\n", sizeof(c)); return 0; ..
Programming Language/C
2020. 8. 1. 22:02