// FCFS without arrival time #include #include struct process { int p,bt,tat,wt; }pro[10]; void main() { clrscr(); int n,x=0,ttat=0,twt=0; cout<<"\t::Program for FCFS scheduling without Arrival Time::"; cout<<"\n--------------------------------------------------------------------\n\n"; cout<<"\nEnter the no. of Processes:"; cin>>n; for(int i=0;i>pro[i].bt; pro[i].wt=x; twt+=x; x+=pro[i].bt; ttat+=x; pro[i].tat=x; } cout<<"\n\n-----------------------------------------------------------\n"; cout<<"Process | Burst Time | TurnAroundTime | Witing Time |\n"; cout<<"-----------------------------------------------------------\n\n"; for(i=0;i