간단한 C언어 여쭤봅니다..^^
#include
#include
int main(void){
char ar[10][20];
printf("ar = %x\n",ar);
printf("ar+1 = %x\n",ar+1);
printf("*(ar+1)= %x\n",*(ar+1));
printf("*(ar+1)+1=%x\n",*(ar+1)+1);
printf("sizeof(ar) = %d\n",sizeof(ar));
printf("sizeof(ar+1) = %d\n",sizeof(ar+1));
printf("sizeof(*(ar+1))= %d\n",sizeof(*(ar+1)));
printf("sizeof(*(ar+1)+1)=%d\n",sizeof(*(ar+1)+1));
return 0;
}
맥 air를 쓰고 있는데 terminal에서 돌리니까
warning 이 뜨더라구요
array_test.c: In function ‘main’:
array_test.c:7: warning: format ‘%x’ expects type ‘unsigned int’, but argument 2 has type ‘char (*)[20]’
array_test.c:8: warning: format ‘%x’ expects type ‘unsigned int’, but argument 2 has type ‘char (*)[20]’
array_test.c:9: warning: format ‘%x’ expects type ‘unsigned int’, but argument 2 has type ‘char *’
array_test.c:10: warning: format ‘%x’ expects type ‘unsigned int’, but argument 2 has type ‘char *’
array_test.c:13: warning: format ‘%d’ expects type ‘int’, but argument 2 has type ‘long unsigned int’
array_test.c:14: warning: format ‘%d’ expects type ‘int’, but argument 2 has type ‘long unsigned int’
array_test.c:15: warning: format ‘%d’ expects type ‘int’, but argument 2 has type ‘long unsigned int’
array_test.c:16: warning: format ‘%d’ expects type ‘int’, but argument 2 has type ‘long unsigned int’
뭐 워닝까지는 이해가 되지만
ar = 5fbff9e0
ar+1 = 5fbff9f4
*(ar+1)= 5fbff9f4
*(ar+1)+1=5fbff9f5
sizeof(ar) = 200
sizeof(ar+1) = 8
sizeof(*(ar+1))= 20
sizeof(*(ar+1)+1)=8
출력결과가 이렇게 뜨는데 이게 제가 잘못알고있는건가요?
sizeof(ar+1)이 저렇게 나오면 안되는 것 같은데..
sizeof(*(ar+1)+1) 역시 제가 예상한것과는 틀린것 같구요..
그래서 또 테스트를 해 보았습니다.
#include
int main(void){
char ch[10];
printf("sizeof(int)=%d\n",sizeof(int));
printf("sizeof(char)=%d\n",sizeof(char));
printf("sizof(ch)==%d",sizeof(ch));
printf("sizeof(ch+1)==%d",sizeof(ch+1));
return 0;
}
출력결과는
sizeof(int)=4
sizeof(char)=1
sizof(ch)==10
sizeof(ch+1)==8
이렇더군요..
제가 궁금한건 왜 sizeof(ch+1)의 크기가 저렇게 되는가 입니다..
있던 노트북을 처분하고 부트캠프나, 페러렐즈를 깔지 않아서 vc로는 테스트를 못해보네요..
제가 잘못한게 있거나 잘못알고 있는게 있다면 좀 알려주세요..
sizeof(ch) 는 array의 크기인 10이
sizeof(ch) 는 array의 크기인 10이 return된 것이고,
sizeof( ch+1 ) 은 pointer의 크기인 8이 return된 것입니다..
댓글 달기