0
1.3kviews
Explain data structure queue, circular queue, link list and array w.r.t. embedded C programming.
1 Answer
| written 4.5 years ago by |
1. Queue
Queue is a linear data structure in which insertion can take place at only one end called rear end and deletion can take place at other end called top end. The front and rear are two terms used to represent the two ends of the list when it …