1.

In a circular queue the value of r will be ..

A. r=r+1
B. r=(r+1)% [QUEUE_SIZE – 1]
C. r=(r+1)% QUEUE_SIZE
D. r=(r-1)% QUEUE_SIZE
Answer» D. r=(r-1)% QUEUE_SIZE


Discussion

No Comment Found