[SOLVED] this code segment sticks in a loop when it enters the push() function....
ProgrammingThis forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I didn't notice that typo until I tried to compile the code.
What is the \P doing?
But once I ran the program I understood the bug. In fact you had posted enough the first time and I just didn't notice the right detail before running the program:
@johnsfine...the "\" was a stray one added during editing the post...it has nothing to do with the code which showed the prblm in push()...sorry about that
@johnsfine...the "\" was a stray one added during editing the post...it has nothing to do with the code which showed the prblm in push()...sorry about that
Reread my post, above. I was editing it at the time you first read it, so you missed the important part.
I suggest you trace pop() by putting in a suitable printf(). You might find that it is not push() which is looping.
The loop is actually in function(). It is the statement while(top!=-1)
and that loops forever because if(n>=index)
is true forever in the case that index is zero and n is positive.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.