Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Could anyone tell me why am i getting error when I try to push

   #include <stdio.h>


typedef struct Element
{
  struct Element *next;
  void *data;
}Element;

bool createStack(Element **stack)
{
  *stack = NULL;
  return true;
}

bool push (Element **stack, void *data)
{
  Element *new_element = new Element;

  if(!new_element)
  {
    printf("Memory allocation error in push");

    return false;
  }

  new_element->data = data;
  new_element->next = *stack;
  *stack            = new_element;
  return true;

}

bool pop (Element **stack, void *popped_data)
{
  if(!*stack)
  {
    printf("Stack empty");

    return false;
  }


  Element *new_head = new Element;

  popped_data   = (*stack)->data;
  new_head      = (*stack)->next;
  delete *stack;
  return true;

}

bool emptyStack(Element **stack)
{
  if(!*stack)
  {
    printf("Stack empty");

    return false;
  }

  Element *delete_ele;

  while(*stack)
  {
    delete_ele=*stack;
    *stack = delete_ele->next;
    delete delete_ele;
  }

  return true;

}

int main()
{

  int i,*j;
  Element *stacka = new Element;

  while(i!=5)
  {
    printf("Enter ur choice \n");
    scanf("%d",&i);

    if(i==1)
    {
      if(createStack(&stacka))
      {
        printf("yes");

      }
    }

    if(i==2)
    {
      *j=2;
      if(push(&stacka,j))
      {
        printf("yes");

      }
    }

    if(i==3)
    {
      if(pop(&stacka,j))
      {

        printf("yes %d",*j);


      }
    }

    if(i==4)
    {
      if(emptyStack(&stacka))
      {
        printf("yes");

      }
    }

  }
return 0;
}

Thanks for the help running it on ubuntu

share|improve this question
3  
Why is this tagged c++? Apart from the new keyword, this is C code. You need to either get a good book on C++, or accept that you're learning C instead. – jalf Aug 27 '11 at 19:08
3  
Compiling with g++ -Wall prints warning: ā€˜j’ may be used uninitialized in this function, and would have saved you the trouble of posting here. – Keith Thompson Aug 27 '11 at 19:12
4  
@koool: Make that your next priority: learn how to use a debugger! It's an indispensable tool for a programmer. Do as Keith says to compile with warnings enabled and don't ignore them! And find a good introductory C++ book, that will be of great help! – R. Martinho Fernandes Aug 27 '11 at 19:48
1  
yes it does. And I didn't "imply" anything. I don't think "imply" means what you think it means. Calling someone a jerk when they behave like a jerk isn't an implication. – jalf Aug 27 '11 at 22:13
1  
@koool: If you can handle gdb that should be fine for now. Single stepping, using breakpoints and watching the values of variables should be enough to figure out a lot of problems. When that fails, you can always come and ask here :) Oh, and in the future, try to reduce your code to as short as possible a piece that still reproduces your problem. Often you can figure out the problem yourself just by doing that. There's a lot more to learn in the road ahead. Have fun! – R. Martinho Fernandes Aug 28 '11 at 0:59
show 9 more comments

2 Answers

up vote 5 down vote accepted

It's in this line

*j = 2;

j is uninitialized at that point.

You should either push &k where k is an int, or initialize j = new int. Memory leak avoidance is up to you in the latter case.

share|improve this answer
1  
I'm pretty sure a debugger would point that out pretty quickly too ... – Goz Aug 27 '11 at 19:08
1  
Also pop isn't updating stack. – Node Aug 27 '11 at 19:09
1  
@Node, it just deletes it 0o – unkulunkulu Aug 27 '11 at 19:10
@unkulunkulu - exactly, so once you've popped an element, you cant access any of the ones after it, nor can you use the variable passed to pop safely. – Node Aug 27 '11 at 19:14
Nice !! @Node yup jus noticed that corrected ... thanks for pointing out – koool Aug 27 '11 at 19:16
show 1 more comment

When you declare int i,*j;, j is just an uninitialized pointer that doesn't point to a valid memory location. Later, when you say *j=2;, you dereference that pointer, which results in undefined behaviour.

You have to assign a meaningful location to j, like so:

int j_content;
int *j = &j_content;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.