구조체값입력후 printf시 값이 이상합니다.ㅠ.ㅠ
#include
#include
#include
#include
struct file_info
{
char name0; // printf ( "char size : %d\n", sizeof(name0)) ----- 1 byte
short name1; // printf ( "char size : %d\n", sizeof(name0)) ----- 2 byte
long name2 // printf ( "char size : %d\n", sizeof(name0)) ----- 4 byte
}
int main(void)
{
char buff[10];
struct file_info data;
struct file_info *sp;
sp = (struct file_info *)malloc(sizeof(struct file_info));
if(sp == 0)
{
printf("file_info Memory Allocation error.\n");
exit(1);
}
printf("STRUCT FILE_INFO SIZE : %d\n", sizeof(data));
//----- 출력값은 8 입니다.
strncpy((char *)buff, "0123456789", sizeof(buff));
printf("BUFF SIZE : %d\n", sizeof(buff));
//------ 출력값은 10 입니다.
printf("BUFF 값 : %s\n", buff);
//------ 출력값은 0123456789 입니다.
memset(sp, 0x00, sizeof(data));
memcpy(sp, (char *)buff, sizeof(data));
printf( "---------- 구조체값 출력 -----------------\n");
printf("name0 : %c\n", sp->name0);
printf("name0 : %c\n", sp->name1);
printf("name0 : %c\n", sp->name2);
//구조체 값 출력 --------------------
// name0 : 0
// name1 : 3
// name2 : 7
// 여기서 왜 출력값이 이러케 나오는지 궁금합니다.
printf( "---------- 구조체값 출력 -----------------\n");
printf("name0 : %c\n", sp->name0);
printf("name0 : %d\n", sp->name1);
printf("name0 : %d\n", sp->name2);
//구조체 값 출력 --------------------
// name0 : 0
// name1 : 12851
// name2 : 875902519
// 여기서 왜 출력값이 이러케 나오는지 궁금합니다.
// 제가 원한는 출력값 입니다.
// name0 : 0
// name1 : 12
// name2 : 3456
}
*** 제발고수님들 답변 제발제발제발 부탁드립니다. ***
struct
댓글 달기