Search:

Type: Posts; User: rcgldr

Search: Search took 0.02 seconds.

  1. Replies
    8
    Views
    2,693

    Yes, that would be a pointer to the first member...

    Yes, that would be a pointer to the first member of an array of struct cars.
  2. Replies
    8
    Views
    2,693

    car *car_queue[QUE_SIZE] is an array of pointers...

    car *car_queue[QUE_SIZE] is an array of pointers to struct car. I think what you want is a single pointer to struct car, which would be a pointer to the first element of the array (which would be a...
  3. Replies
    8
    Views
    2,693

    Is the circular struct supposed to have a pointer...

    Is the circular struct supposed to have a pointer to the array? Currently, the pointer in the circular struct has bad syntax. The circular structure should have a member called "size" so the code...
Results 1 to 3 of 4