Posts

Showing posts from October, 2019

MFT memory allocation technique (operating system)

Image
To implement MFT memory allocation algorithm Program in C: #include<stdio.h> void main() {     int m,p,s,p1;     int m1[4],i,f,f1=0,f2=0,fra1,fra2,s1;     printf("Enter the memory size:");     scanf("%d",&m);     printf("Enter the no of partitions:");     scanf("%d",&p);     s=m/p;     printf("Each partition size is:%d",s);     printf("\nEnter the no of processes:");     scanf("%d",&p1);     for(i=0;i<p1;i++)     {         printf("\nEnter the memory required for process %d:",i+1);         scanf("%d",&m1[i]);         if(m1[i]<=s)         {            printf("\nProcess is allocated in partition %d",i+1);            fra1=s-m1[i];            printf("\nI...