구조체 sizeof를 하면 틀리게 나오는 이유...
권시크
구조체 sizeof를 하면 틀리게 나오는 이유...구조체를 만들고 들어온 값을 memcpy하여 구조체 변수를 불러다 쓰다보니 한개씩 밀리는 경우 가 발생하여 sizeof를 보니 틀리게 나옵니다. 질문 내용 : 먼저 헤더 파일에 다음과 같이 define해놓았습니다.
typedef unsigned char boolean; /* boolean value type. */
typedef unsigned long long uint64; /* unsigned 64 bit value */
typedef unsigned long int uint32; /* unsigned 32 bit value */
typedef unsigned short uint16; /* unsigned 16 bit value */
typedef unsigned char uint8; /* unsigned 8 bit value */
typedef signed long int int32; /* signed 32 bit value */
typedef signed short int16; /* signed 16 bit value */
typedef signed char int8; /* signed 8 bit value */
/* this group are the deprecated types. their use should be
** discontinued and new code should use the types above
*/
typedef unsigned char byte; /* unsigned 8 bit value type. */
typedef unsigned short word; /* unsinged 16 bit value type. */
typedef unsigned long dword; /* unsigned 32 bit value type. */
typedef unsigned char uint1; /* unsigned 8 bit value type. */
typedef unsigned short uint2; /* unsigned 16 bit value type. */
typedef unsigned long uint4; /* unsigned 32 bit value type. */
typedef signed char int1; /* signed 8 bit value type. */
typedef signed short int2; /* signed 16 bit value type. */
typedef long int int4; /* signed 32 bit value type. */
typedef signed long sint31; /* signed 32 bit value */
typedef signed short sint15; /* signed 16 bit value */
typedef signed char sint7; /* signed 8 bit value */
구조체는 다음과 같습니다.
typedef struct s_any_debug_type
{
uint16 frequency; // center frequency channel
uint16 psc;
int16 rssi;
uint16 drx_cycle_len;
byte plmn[6];
byte cn_id;
byte mm_state;
byte rrc_state;
byte net_op_mode;
byte imsi[16];
int16 tx_pwr;
int16 rscp;
int16 ecio;
byte lac[2];
byte rac;
/*
any_bler_type bler;
int16 ktf_tx_adj;
byte gmm_state;
byte pathloss;
uint32 cell_id;
uint16 measurement_rscp;
*/
}any_debug_type ;
위에서 구조체를 sizeof로 해서 구해보면 lac[2]까지는 42가 나오는데..rac를 하게되면 44가 나옵니다. 43이 나와야 하는데..왜 그런건가요...?
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676182 | 숫자 순서대로 배열하는법 | 권뉴 | 2024-11-24 |
2676152 | 기본적인거 하나 질문드립니다. | 개미 | 2024-11-24 |
2676124 | 함수선언관련 질문이에요~...털썩..수정완료 (2) | 가지 | 2024-11-24 |
2676092 | C언어 책 (2) | 아서 | 2024-11-24 |
2676065 | 웹사이트 또는 메신저 등에서 원하는 텍스트를 검사하는방법?? (1) | 모든 | 2024-11-23 |
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |