#include #include // Page Replacement: FIFO & Optimal (Minimal Code for Paper) int main() { int nf, np, i, j, k, pf, hit, idx, max_f, vic; // nf=frames, np=pages, pf=faults, idx=fifo_idx, max_f=max_future, vic=victim int *rs, *f; // rs=ref_string, f=frames printf("F N:"); scanf("%d%d", &nf, &np); // Frames, NumPages rs = malloc(np * sizeof(int)); f = malloc(nf * sizeof(int)); if(!rs || !f) return 1; // Basic alloc check printf("RS:"); for(i=0; imax_f) {max_f=fut; vic=k;} // f[k] used later than current max? Update victim. } f[vic]=rs[i]; // Replace victim frame } } } printf("F:%d\n", pf); // Print Faults free(rs); free(f); // Free memory return 0; }