Queue

LRU and FIFO L1 Cache Implementation using C

LRU and FIFO L1 Cache Implementation using C

This is a C program to demonstrate cache mechanism by simulating a cache in C. The source code can run in any C Compiler with…

Queue Implementation with Inheritance and Polymorphism

Following is the source code of simple queue implementation with the help of Inheritance and Polymorphism i.e. Late Binding.