Tag: waiting time

C program for Round Robin CPU Scheduling Algorithm

Under Category : Other Circuits

INPUT : enter the process name : aaa enter the processing time : 4 enter the process name : bbb enter the processing time : 3 enter the process name : ccc enter the processing time : 2 enter the process name : ddd enter the processing time : 5 enter the process name : [...]

Read More »

C program for SJF CPU Scheduling Algorithm

Under Category : Other Circuits

OUTPUT: enter no of processes: 5 enter process1 name: aaa enter process time: 4 enter process2 name: bbb enter process time: 3 enter process3 name: ccc enter process time: 2 enter process4 name: ddd enter process time: 5 enter process5 name: eee enter process time: 1 p_name P_time w_time eee 1 0 ccc 2 1 [...]

Read More »

C Program for FCFS CPU scheduling algorithm

Under Category : Other Circuits

OUTPUT: enter no of processes: 5 enter process1 name: aaa enter process time: 4 enter process2 name: bbb enter process time: 3 enter process3 name: ccc enter process time: 2 enter process4 name: ddd enter process time: 5 enter process5 name: eee enter process time: 1 p_name  P_time  w_time aaa    4    0 bbb    3    4 [...]

Read More »