간단한 C언어 여쭤봅니다..^^

tk3829의 이미지

#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이 return된 것이고,
sizeof( ch+1 ) 은 pointer의 크기인 8이 return된 것입니다..

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.