Page Replacement Algorithms in Operating Systems (OS)
1) Write the simulation program for demand paging and show the page scheduling and total number of page faults according the FIFO page replacement algorithm. Assume the memory of n frames.
#include<stdio.h>
#include<conio.h>…