q->front = q->rear = 0;


이거랑


q->front = NULL;

q->rear = NULL;


이거랑같은동작임?