Skip to content

Instantly share code, notes, and snippets.

@AdityaJ97
AdityaJ97 / First Come First Serve Simulation
Last active February 18, 2019 13:59 — forked from debashisbarman/First Come First Serve Simulation
This is a simple C program to simulate the first come first serve scheduling. The purpose of this program is to calculate the waiting time, average waiting time and turn around time for a user input process queue.
/* =========================================================================
* First Come First Serve Scheduling
*
* DESCRIPTION
* ===========
* This is a simple C program to simulate the first come first serve
* scheduling. The purpose of this program is to calculate the waiting time,
* average waiting time and turn around time for a user input process queue.
*
* =========================================================================