Code:
#include<stdio.h>
#include<stdlib.h>
typedef struct process
{
int pn;
float at,bt,ct,tat,wt;
struct process *next;
}process;
/////////////////////////////////////////
float total_wait_time=0,total_turn_around_time=0;
int n;
process *get_process(float a,float b)
Leave a comment: