SEARCH
You are in browse mode. You must login to use MEMORY

   Log in to start


From course:

Computer Science AQA A level

» Start this Course
(Practice similar questions for free)
Question:

Program how an item is added from a circular queue

Author: Will Parker



Answer:

S = readline() if (!Full()) { rear = (rear + 1) % capacity; QueueArray[rear] = s; count++; }


0 / 5  (0 ratings)

1 answer(s) in total