Create another header file with the following functions and structure declaration, submission should contain a .h file containing function declarations along with a .c file containing function definitions
struct queue{
int max_len;
int *queue;
int queue_len;
};
void enqueue(struct queue* q, int data);
void dequeue(struct queue* q);
int front(struct queue* q);
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here