[해결]포인터에대한질문

tokubetu111의 이미지

안녕하세요.
아래코드 실행 결과는 다음과 같습니다.
pchar1 = abcde
pchar2 = cde
pchar3 = abcde

왜, pchar2와 pchar3의 값이 다른지 설명해 주시길 부탁드립니다.
그럼 수고하세요~

-------------------------------------------------------------
#include

void chanageAddr(char* str);

int main()
{
char cArray[6] = "abcde";
char *pchar;

pchar = &(cArray[0]);

printf("pchar1 = %s\n",pchar);
chanageAddr(pchar);
printf("pchar3 = %s\n",pchar);
return 0;
}

void chanageAddr(char* str)
{
str = str + 2;
printf("pchar2 = %s\n",str);
}

M.W.Park의 이미지

다음과 같이 하면 될듯한데요.
C 손놓은지는 아주 오래 되어서 확실치는 않습니다. ^^;

char* chanageAddr(char* str)
{
  str = str + 2;
  printf("pchar2 = %s\n",str);
  return str;
}
 
in main(), "chanageAddr(pchar); ==> pchar = chanageAddr(pchar);"

또는

void chanageAddr(char** str)
{
  *str = *str + 2;
  printf("pchar2 = %s\n", *str);
}
 
in main(), "chanageAddr(pchar); ==> chanageAddr(&pchar);"

-----
오늘 나의 취미는 끝없는, 끝없는 인내다. 1973 法頂

-----
오늘 의 취미는 끝없는, 끝없는 인내다. 1973 法頂

익명 사용자의 이미지

call by value라는 항목을 C언어 책에서 찾아보세요.

C언어에서는 함수에 매개변수가 전달될 때,
그 자체로 전달되는게 아니라
복사본이 전달됩니다.

즉 함수 내부에서 쓰여지는 str은
매개변수 부분에 쓴 pchar의 임시 복사본입니다.
따라서 str을 가지고 뭔짓을 해도
원본인 pchar은 변하지 않습니다.

따라서 원본을 변경해야 할 경우에는
포인터를 통해 간접적으로 접근해야 합니다.

tokubetu111의 이미지

안녕하세요. 답해주신 M.W.Park님과 익명사용자님께 감사드립니다.

처음에 위의 함수 작성할 때 저의 의도또한, call by reference이었습니다.
그래서 changeAddr()함수 호출할 때, 포인터인 pchar을 매개변수로 넘겨준 것이구요.
그런데 자세히 살펴보니, 제가 변경하려하는 값이 pchar의 값이므로...
pchar의 값을 조작하기 위해서는 pchar을 가리키는 다른 포인터를 매개변수로 넘겨주어야 한다는 것이군요. ^^;

감사합니다. 많은 도움되었습니다~~~

[오늘 나의 불행은, 과거 언젠가 잘못 보낸 시간의 보복이다.]

[오늘 나의 불행은, 과거 언젠가 잘못 보낸 시간의 보복이다.]

댓글 달기

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