What is wrong with my front function? I want to pass a pointer to a specific line in my array in order to read / edit it.
struct queue { char itens[LN][CL]; int front,rear; }; char *front(struct queue * pq) { return pq->itens[pq->front+1][0]; }
kreis source share