shilpa s
2006-11-07 18:18:46 UTC
#include
#define QUEUE_SIZE 5
struct queue
{
int f;
int r;
int a[10];
};
typedef struct queue QUEUE;
void insert_rear(int item,QUEUE *Q)
{
-----------
}
THE ERRORS ISSUED ARE
LINE 10:DECLARATION SYNTAX ERROR
LINE 11:) EXPECTED