Search:

Type: Posts; User: programming1985

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    1,558

    That seemed to have worked, thanks!

    That seemed to have worked, thanks!
  2. Replies
    4
    Views
    1,558

    yeah it does struct stack { struct...

    yeah it does


    struct stack
    {
    struct queue* store;
    int top;
    int size;
    };
  3. Replies
    4
    Views
    1,558

    Pushing a Queue Onto Stack

    Hey, I'm having a problem pushing a queue into a stack and Im stuck at how to fix it.

    Here is my function that adds a queue into the stack


    void add_new_queue(struct stack* s, struct queue* q)...
Results 1 to 3 of 3