InterviewSolution
Saved Bookmarks
| 1. |
What Is Fifo? |
|
Answer» In C programming, there is a data STRUCTURE known as queue. In this structure, data is STORED and accessed using FIFO format, or FIRST-In-First-Out. A queue represents a LINE wherein the first data that was stored will be the first one that is accessible as well. In C programming, there is a data structure known as queue. In this structure, data is stored and accessed using FIFO format, or First-In-First-Out. A queue represents a line wherein the first data that was stored will be the first one that is accessible as well. |
|