Search:

Type: Posts; User: Mogren3000

Search: Search took 0.00 seconds.

  1. Replies
    8
    Views
    2,692

    So what you are saying that is I should have a...

    So what you are saying that is I should have a pointer like this "car *car_queue".
  2. Replies
    8
    Views
    2,692

    I posted an answer to that just now. Changed the...

    I posted an answer to that just now. Changed the struct to this:


    typedef struct
    {
    char reg[25];
    char brand[25];
    int modelyear;
    int mileage;
    }car;
  3. Replies
    8
    Views
    2,692

    Have made some changes.

    I have been fixing some code that didnt seem so right.
    First i have changed "struct *car_queue" to "car *car_queue[QUE_SIZE]" and after that i added this to the main, "circular que".

    So now i...
  4. Replies
    8
    Views
    2,692

    Circular queue base on struct.

    Hi. Iam stuck with how to make a circular queue that are based on a struct. Have been reading about the implementation but cant really understand it fully.

    Here is what i got so far.


    ...
Results 1 to 4 of 4