My first C assignment is to create a Queue. I am using an array based implementation as opposed to a linked list.
I am getting the following error when I try to compile my code:
Queue.c: In function 'Enqueue':
Queue.c:23: warning: assignment from incompatible pointer type
Here is my code, I will supply the header code if needed:
#include "QueueElement.h"
#include "Queue.h"
#define QUEUE_SIZE 10
struct QueueStruct {
QueueElement *contents[QUEUE_SIZE];
int size;
};
Queue CreateQueue(void) {
Queue q = malloc(sizeof(struct QueueStruct));
q->size = 0;
return q;
}
void DestroyQueue(Queue q) {
free(q);
}
void Enqueue(Queue q, QueueElement *e) {
if (q->size < QUEUE_SIZE) {
q->contents[q->size++] = *e; /* PROBLEM IS HERE */
}
}
Any help with this problem is greatly appreciated as well as any other suggestions. Thanks guys.
QueueElementis not the same asQueueElement*. – Trinidad Jan 28 '11 at 2:58Queue? There's no definition ofQueuein the code you provided. – AndreyT Jan 28 '11 at 3:03