January 22, 2012
#include<stdio.h>typedef struct process{int id;int wait;int burst;};struct process pro[10];struct process temp[20];table(struct process pro[],int nop);gantt(struct process pro[],int nop);int getdata();incwait(int tempburst,int id);init();int nop;main(){struct process tmppro;int choice,quantum;int...
Read More