[c질문] 컴파일 에러..

익명 사용자의 이미지

안녕하세요..

이런 초보적인 질문을 올려서 죄송합니다.

linked list 예제인데도 돌머리 땜에 몇일동안 고민해두 안풀리고..

부끄럽지만 고수님들의 도움을 받기루 했습니다. =_=;;

a~z 의 단어를 받아 적는 간단한 linked list 인데..

이해가 될듯 말듯한 컴팔 에러가 자꾸떠서...미치겠습니다.


linkedLt.cpp In function `void insert(LISTNODE **, char)'
linkedLt.cpp96 ANSI C++ forbids implicit conversion from `void *' in
assignment

이게 에러인데.. 도대체 무슨 뜻인지..


아래는 소스 랍니다..

/* At hp-ux gcc v. 2.95.3 */

struct listNode {
char data;
struct listNode *nextPtr;
};

typedef struct listNode LISTNODE;
typedef LISTNODE *LISTNODEPTR;

main()
{
LISTNODEPTR startPtr = NULL;

/*insert 함수를 부릅니다. 포인터의 주소를 넘기죠 ^^* */

printf("Enter a character ");
scanf("\n%c", &item);
insert(&startPtr, item);

}

void insert(LISTNODEPTR *sPtr, item)
{

LISTNODEPTR newPtr, previousPtr, currentPtr;

newPtr = malloc(sizeof(LISTNODE));

if (newPtr != NULL) {

newPtr->data = value;
newPtr->nextPtr = NULL;

previousPtr = NULL;
currentPtr = *sPtr;

while (currentPtr != NULL && value > currentPtr->data) {

previousPtr = currentPtr;
currentPtr = currentPtr->nextPtr;

}/* while */

if (previousPtr == NULL) {
newPtr->nextPtr = *sPtr;
*sPtr = newPtr;
}
else {

previousPtr->nextPtr = newPtr;
newPtr->nextPtr = currentPtr;
}

}/* if */
else
printf("%c not inserted. No memory available.\n", value);

}

NULL 값을 가진 포인터의 주소를 포인터로 받으면...
ansi c 에 어긋나나 보다... 라구 생각해보는데...

이런게 에러로 뜨면 c로 플그램하는 데 엄청난 어려움이 있을거같구...

흑흑흑..... 조언좀 부탁 드립니다...

꼬닉

익명 사용자의 이미지

> NULL 값을 가진 포인터의 주소를 포인터로 받으면...
> ansi c 에 어긋나나 보다... 라구 생각해보는데...

이렇게 생각하셨는데, 컴파일 단계에서 특정한 변수의 값을
체크하지는 않습니다.
C++ 은 엄격한 형변환 규칙이 적용되므로, 그 에러는 서로 다른
형(type 또는 class) 를 갖는 포인터를 캐스트 없이 변환하는 데서
발생한 것으로 보여집니다. insert 코드를 빼먹으셨는데, 아마도
그 함수 안에서 발생한 에러가 아닌가 생각되네요.

익명 사용자의 이미지


유치한 생각이지만...
별다른 문제가 안보이는데...(코..콩깍지 *-_-* )

잉~

익명 사용자의 이미지

newPtr = malloc(sizeof(LISTNODE));

malloc 이 void* 를 리턴하므로 newPtr 타입에 맞게 캐스트되어야
합니다.

익명 사용자의 이미지


헉.~~ 그런 부분까지...

정말 감솨 합니당~~~ ^^*

좋은 추석 되세여~

익명 사용자의 이미지

insert 함수 정의 부분에서 item의 형을 써주지 않아서

에러가 나는것 같네요.

void insert(LISTNODEPTR *sPtr, item) 을

void insert(LISTNODEPTR *sPtr, LISTNODEPTR item)로 해보세요.

꼬닉 wrote..
안녕하세요..

이런 초보적인 질문을 올려서 죄송합니다.

linked list 예제인데도 돌머리 땜에 몇일동안 고민해두 안풀리고..

부끄럽지만 고수님들의 도움을 받기루 했습니다. =_=;;


a~z 의 단어를 받아 적는 간단한 linked list 인데..

이해가 될듯 말듯한 컴팔 에러가 자꾸떠서...미치겠습니다.


linkedLt.cpp In function `void insert(LISTNODE **, char)'
linkedLt.cpp96 ANSI C++ forbids implicit conversion from `void *' in
assignment

이게 에러인데.. 도대체 무슨 뜻인지..


아래는 소스 랍니다..

/* At hp-ux gcc v. 2.95.3 */

struct listNode {
char data;
struct listNode *nextPtr;
};

typedef struct listNode LISTNODE;
typedef LISTNODE *LISTNODEPTR;

main()
{
LISTNODEPTR startPtr = NULL;


/*insert 함수를 부릅니다. 포인터의 주소를 넘기죠 ^^* */

printf("Enter a character ");
scanf("\n%c", &item);
insert(&startPtr, item);



}

void insert(LISTNODEPTR *sPtr, item)
{

LISTNODEPTR newPtr, previousPtr, currentPtr;

newPtr = malloc(sizeof(LISTNODE));

if (newPtr != NULL) {

newPtr->data = value;
newPtr->nextPtr = NULL;

previousPtr = NULL;
currentPtr = *sPtr;

while (currentPtr != NULL && value > currentPtr-
>data) {

previousPtr = currentPtr;
currentPtr = currentPtr->nextPtr;

}/* while */

if (previousPtr == NULL) {
newPtr->nextPtr = *sPtr;
*sPtr = newPtr;
}
else {

previousPtr->nextPtr = newPtr;
newPtr->nextPtr = currentPtr;
}

}/* if */
else
printf("%c not inserted. No memory available.\n",
value);


}

NULL 값을 가진 포인터의 주소를 포인터로 받으면...
ansi c 에 어긋나나 보다... 라구 생각해보는데...

이런게 에러로 뜨면 c로 플그램하는 데 엄청난 어려움이 있을거같구...

흑흑흑..... 조언좀 부탁 드립니다...

꼬닉

댓글 달기

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