c 동적메모리할당..실행이 잘안됩니다 도움좀

cbers의 이미지

#include <stdio.h>
#include <stdlib.h>

typedef struct {
        char writer[15];
        char title[20];
        int page;
} BOOK;

void Input(BOOK*);
void Print(BOOK*);

int main(void)
{
        BOOK* book[3];
        int i;

        for(i=0; i<3; i++)
                book[i]=(BOOK*)malloc(sizeof(BOOK));

        printf("input\n");
        for(i=0; i<3; i++)
                Input(book[i]);

        printf("print all\n");
        for(i=0; i<3; i++)
                Print(book[i]);

        return 0;
}

void Input(BOOK* a)
{
        fgets(a->writer, 14, stdin);
        fgets(a->title, 19, stdin);
        scanf("%d", &(a->page));
        getchar();
}

void Print(BOOK* a)
{
        fputs(a->writer, stdout);
        fputs(a->title, stdout);
        printf("%d\n", a->page);
}

굳이 malloc을 쓰지않아도 되는 프로그램이지만;;
공부를위해서 짜보고있는데요..

BOOK one;
BOOK* two=(BOOK*)malloc(sizeof(BOOK));

이렇게 선언을 해준다면 one과 *two는 똑같은 메모리를 가지고있고
연산자만 조금씩 바꿔서 이용한다면 둘다 똑같은거 아닌가요?
그걸 이용해서 함수에 인자로 전달하는데
Input 함수가 구조체 맴머값들을 입력받아저장하는 기능을 가졌는데..
이 함수가 실행이 되고나서 또 그 구조체맴버들을 출력하는
Print 함수가 실행되어야 하는데..그냥 입력만받고 프로그램이 끝나버리는군요
제가 포인터연산자를 잘못다룬 부분이 있는것같은데;;
아시는분은 좀 가르쳐주시기바랍니다 부탁드립니다

Fe.head의 이미지

실행 잘 됩니다.

마지막에 free 하는것을 빼먹으셨군요.

질문을 잘 이해 못하겠는데.

포인터 할당.

        BOOK* book;
        book=(BOOK*)malloc(sizeof(BOOK));

        printf("input\n");
        Input(book);

        printf("print all\n");
        Print(book);

지역 변수 사용.

        BOOK one;

        printf("input\n");
        Input(&one);

        printf("print all\n");
        Print(&one);

하시면 됩니다.

고작 블로킹 하나, 고작 25점 중에 1점, 고작 부활동
"만약 그 순간이 온다면 그때가 네가 배구에 빠지는 순간이야"

cbers의 이미지

Print 함수가 제대로 작동하는지 몰랏습니다;;

출력된것이 제 눈에는 제가 입력한걸로 보엿던 모양입니다

또 제가 free하는걸 잊었군요..답변감사드립니다

댓글 달기

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