동적할당을 통한 구조체스택 플그램....

yul2의 이미지

동적할당을 통한 구조체스택 프로그램인데요... 아무리 봐도 어디가 이상한지 모르겠네요... 고수님들... 도와주세요!!
터보C 에서는 push()한 값 이외에 이상한 값들이 추가로 print 되구요.... 비주얼 C 로 컴파일 하니깐 push()한 값만 찍히고 애러메시지가 찍히네요...
unhandled exception in stack.exe: 0xC0000005: access violation <------ 이런 메시지가 뜨네요...
아... 프로그램의 세계는 심오한듯.... ㅠ.ㅠ;;

#include <stdio.h>
#include <malloc.h>

typedef struct stack STACK;

struct stack {
                 int key;
                 STACK *next;
                 };

typedef STACK * STACKPTR;


void init( void );
void push( STACKPTR * );
void pop();
void print( STACKPTR );

int main()
{
      int sel = 1;
      STACKPTR stack;


      while ( sel != 0 ) {
            init();
            printf("select: ");
            scanf("%d", &sel);
                  switch( sel ){
                    case 1 : push( &stack );
                             print( stack );
                         break;
                    case 2 : pop();
                         break;
                    case 3 : sel = 0;
                         break;
            }
      }
      return  0;
}

void init( void )
{
 printf("    *** seletion ***\n");
 printf("1.push\n2.pop\n3.end\n\n");
}

void push( STACKPTR * stack )
{
 int data;
 STACKPTR st;

 st = malloc( sizeof( STACK ) );

 if ( st != NULL ) {
	 printf("input the key: ");
     scanf("%d", &data);
	 st->key = data;
     st->next = *stack;
     *stack = st;
 }
 else {
     printf("Memory was not allocated!\n");

 }
}

void pop()
{


}

void print( STACKPTR stack )
{
       if ( stack == NULL ) printf("The stack is empty!!");
       else {
		   while ( stack != NULL ) {
                   printf("%d\n", stack->key);
                   stack = stack->next;
             }
       }
}
[/code][/b]
girneter의 이미지

void print( STACKPTR stack )
{
       if ( stack == NULL ) printf("The stack is empty!!");
       else {
		   while ( stack != NULL ) {
                   printf("%d\n", stack->key);
                   stack = stack->next;
             }
       }
}

print 함수를 보면 stack 이 NULL 인지 아닌지 확인을 해서
stack 이 NULL 일 때 while loop 을 탈출합니다.
그런데 님의 code 상에서는 stack 이 NULL 인 경우가 없어요.
초기에 NULL 값으로 초기화가 안된거지요
잘 생각해 보세요.

개념없는 초딩들은 좋은 말로 할때 DC나 웃대가서 놀아라. 응?

익명 사용자의 이미지

참.... 생각을 하면서 짲을텐데... 왜 저런게 안보였을까요....
어이가 없넹.... ^^;; 저런걸 한참을 찾아 해맸다니...
아무튼 감솨.... push()까지 잘돌아가네요...

댓글 달기

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