-
Notifications
You must be signed in to change notification settings - Fork 0
/
EXP-1(a)FCFS.c
43 lines (32 loc) · 893 Bytes
/
EXP-1(a)FCFS.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <stdio.h>
#include <conio.h>
int main() {
int bt[20], wt[20], tat[20], i, n;
float wtavg = 0, tatavg = 0;
printf("Enter the number of processes: ");
scanf("%d", &n);
for (i = 0; i < n; i++) {
printf("Enter Burst Time for Process %d: ", i);
scanf("%d", &bt[i]);
}
wt[0] = 0;
tat[0] = bt[0];
for (i = 1; i < n; i++) {
wt[i] = wt[i - 1] + bt[i - 1];
tat[i] = wt[i] + bt[i];
}
for (i = 0; i < n; i++) {
wtavg += wt[i];
tatavg += tat[i];
}
wtavg /= n;
tatavg /= n;
printf("\nPROCESS\tBURST TIME\tWAITING TIME\tTURNAROUND TIME\n");
for (i = 0; i < n; i++) {
printf("P%d\t\t%d\t\t%d\t\t%d\n", i, bt[i], wt[i], tat[i]);
}
printf("\nAverage Waiting Time -- %f", wtavg);
printf("\nAverage Turnaround Time -- %f", tatavg);
getch();
return 0;
}