질문 include문제입니다...

바이러스의 이미지

/*ExStudent.h*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct _slist List;
typedef struct _slist {
	int number;
	char name[30];
	List *next;
	List *prev;
}List;

int screen();
void add();
void modify();
void seek();
void deldata();

헤더파일이고

main은

#include "ExStudent.h"
List *pList;

void init()
{
        pList=(List *)malloc(sizeof(List));
        strcpy(pList->name,"root");
        pList->number=0;
        pList->next=0;
        pList->prev=0;
}
void freelist()
{
        List *p;
        p=pList;
        while(p)
        {
                List *del;
                del=p;
                p=p->next;
                free(del);
        }
}

void main()
{
        int choice;
        init();
        while((choice=screen())!=5)
        {
                switch(choice)
                {
                case 1:
                        add();
                        break;
                 case 2:
                        modify();
                        break;
                case 3:
                        seek();
                        break;
                case 4:
                        deldata();
                        break;
                }

        }
        freelist();
}
입니다만 컴파일은 하면

[kyo@localhost module]$ gcc main.c -o main
main.c: In function `main':
main.c:26: warning: return type of `main' is not `int'
/tmp/ccmM2fhf.o(.text+0xa3): In function `main':
: undefined reference to `screen'
/tmp/ccmM2fhf.o(.text+0xdb): In function `main':
: undefined reference to `add'
/tmp/ccmM2fhf.o(.text+0xe2): In function `main':
: undefined reference to `modify'
/tmp/ccmM2fhf.o(.text+0xe9): In function `main':
: undefined reference to `seek'
/tmp/ccmM2fhf.o(.text+0xf0): In function `main':
: undefined reference to `deldata'
collect2: ld returned 1 exit status

아마 함수를 못찾는것 같은데 다른분들 보기에는 어떻습니까?

맹고이의 이미지

int screen();
void add();
void modify();
void seek();
void deldata();

들을 정의한 소스파일을 같이 컴파일 해야죠...

바이러스의 이미지

맹고이 wrote:
int screen();
void add();
void modify();
void seek();
void deldata();

들을 정의한 소스파일을 같이 컴파일 해야죠...

만약 그들을 정의한 소스파일들

ex)

#include "ExStudent.h"
extern List *pList;
void add()
{
	List *p,*pNew;
	int number;
	char name[40];
	{//입력 받는 모듈
		printf("번호:");
		scanf("%d",&number);
		printf("이름:");
		scanf("%s",name);
	}
	p=pList;
	while(p->next)
		p=p->next;
	pNew=(List *)malloc(sizeof(List));
	strcpy(pNew->name,name);
	pNew->number=number;
	pNew->prev=p;
	p->next=pNew;
	pNew->next=NULL;
	printf("입력이 완료 되었습니다.\n");
}

정의했다면

Quote:
같이컴파일해야죠

란걸 하려면 어떻게 해야죠?

사람이 죽은뒤에 영혼이라는 것이 과연 존재 할까?죽음으로써 해답을 찾아보자...

riot의 이미지

...main뒤에

void add(void)
{
}

void modify(void)
{
}

void seek(void)
{
}

void deldata(void)
{
}

int screen(void)
{
}

eminency의 이미지

말 그대로...

gcc main.c a.c -o main

같이 컴파일하면 됩니다 -_-

노루가 사냥꾼의 손에서 벗어나는 것 같이, 새가 그물치는 자의 손에서 벗어나는 것 같이 스스로 구원하라 -잠언 6:5

댓글 달기

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