Microchip Technology Interview Question

What is a fifo structure?

Interview Answer

Anonymous

Mar 2, 2024

First in First out data structure that can either be done in software or hardware to handle data flow. Fifo is full when head + 1 == tail, empty when head == tail.