Forum: C++ Jul 27th, 2005 |
| Replies: 3 Views: 1,805 Thanks for the feedback. I was trying to create a function empty() to display the entire list of entries after a pop, and if no entries then not to display anything.
I think I'm not doing it... |
Forum: C++ Jul 26th, 2005 |
| Replies: 3 Views: 1,805 I'm confused as to why my program is turning out errors when I try to compile the code. Please help.
#include<conio.h>
#include<stdio.h>
#include<iostream.h>
#include<string.h>
class... |
Forum: C++ Jul 8th, 2005 |
| Replies: 3 Views: 2,040 More specifically, how can I get rid of display () and still "display" poped entries after each pop.
Thanks. |
Forum: C++ Jul 8th, 2005 |
| Replies: 3 Views: 2,040 I need to have my code modified, but am unsure how to write the code to do it. After the ID and name are poped from the stack, I need the program to automatically display the list created i.e. I... |
Forum: C Jun 29th, 2005 |
| Replies: 3 Views: 3,363 what I mean by a menu are choices (1 - push a character/integer, 2 - pop a character/integer, 3 - display all, etc..). I assume I'll be using the switch to accomplish this.
Thanks. |
Forum: C Jun 29th, 2005 |
| Replies: 3 Views: 3,363 I've used linked lists before. Does anybody have a resource or url address on how to write a linked stack? I need to create a stack with a menu using int and char variables.
Thanks. |
Forum: C++ Jun 25th, 2005 |
| Replies: 5 Views: 5,239 I see how adding more space makes the code easier to read. I tried your modifications and they worked. I was adding a " return 0; " instead of just a " return; "
Would you happen to know how to... |
Forum: C++ Jun 25th, 2005 |
| Replies: 5 Views: 5,239 I've gotten feedback from my instructor to modify my code because it contains poor design techniques. I need to add a " return " after each function without it going back to " main " and also to... |