[질문] 이중 배열 포인터

deux9745의 이미지

temp[][] 배열의 값에 p_str_temp[] 가 존재하는지 확인을 위해 함수 dup_word()를 호출 해서 확인하는 프로그램입니다.
함수의 인자들을 수정 하지 않고, 아래 포맷으로 호출해서 확인하려고 했는데 에러가 발생 합니다.
어느 부분을 잘못했는지 알려주시면 감사하겠습니다.
#include
#include
#include
#include

#define MAX_STR_LEN 200
#define MAX_WORD_COUNT 32

int dup_word(char **wp, char *str)
{
int i;
for(i=0; wp[i] != NULL ; i++)
{

if(strcmp(wp[i],str) == 0)
break;
}

return 0;
}

int main()
{
char temp[MAX_WORD_COUNT][MAX_STR_LEN]={"student","boy","NULL"};
char p_str_temp[20]="student";

if(dup_word(temp,p_str_temp) == 0)
{
printf("not present in array");

}


return 0;
}

임종규의 이미지

char tmp[2][3] = {...};

char **for_tmp1;
char (*for_tmp2)[3];
char *for_tmp3;

for_tmp 시리즈 중 하나만이 tmp 배열을 담을 수 있는 포인터 입니다.

왜 그런지는

tmp + 1

이 가리키고 있는 곳의 위치를 생각해보시길 바랍니다.

/* How to Love Others */
while(GetDepth(Love) < Enough) DoLove();

deux9745의 이미지

잘 이해가 안되는데, 아래 함수는 변경 하면 안되는 상황에서 동작하게 하려면 어떻게 해야 하나요?
int dup_word(char **wp, char *str)

raymundo의 이미지

윗분의 답글의 요지는,
배열의 이름을 인자로 넣으면 받는 쪽에서 포인터로 받는데,
2차원 배열의 이름을 인자로 넣을 때는 받는 쪽에서 2중 포인터로 받는 게 아니라는 얘깁니다.

char temp[MAX_WORD_COUNT][MAX_STR_LEN]

이렇게 선언된 상태에서 temp 의 타입은 (배열 이름만 단독으로 수식으로 쓰였을 때)
char ** 가 아니라
char (*)[ MAX_STR_LEN ]
처럼 간주됩니다. 따라서 함수 선언할 때 매개변수도 그 타입이어야 하고,

반대로 함수의 선언은 수정할 수 없다면, temp 변수가 배열의 배열이 아니라 포인터의 배열이 되도록 고쳐야겠네요.

char *temp[MAX_WORD_COUNT] = { "student", "boy", "NULL" };

아니면 따로 char ** 타입의 포인터를 만들어서 각 문자열을 가리키게 한 상태로 넘겨주거나

char *ptr[3] = { temp[0], temp[1], temp[2] };
 
dup_word( ptr, p_str_temp ) ...

그런데 저 함수는 항상 0을 반환할 테니 원하는 결과가 나오지는 않겠네요.

좋은 하루 되세요!

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.