CSL 206 :EXP 5: C Program to implement FCFS algorithm

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 พ.ย. 2024

ความคิดเห็น • 13

  • @shiiillpa
    @shiiillpa 2 ปีที่แล้ว +10

    Miss FCFS with arrival time nte kode cheyyuvo

    • @a.v6874
      @a.v6874 4 หลายเดือนก่อน +2

      #include
      void main() {
      int n, i, temp, j;
      printf("Enter Number of Processes");
      scanf("%d", &n);
      int at[n], bt[n], tt[n], wt[n], id[n];
      for (i = 0; i < n; i++) {
      printf("Enter Arrival Time of Process %d
      ", i + 1);
      scanf("%d", &at[i]);
      printf("Enter Burst Time of Process %d
      ", i + 1);
      scanf("%d", &bt[i]);
      id[i] = i + 1;
      }
      for (i = 0; i < n - 1; i++) {
      for (j = 0; j < n - i - 1; j++) {
      if (at[j] > at[j + 1]) {
      temp = at[j + 1];
      at[j + 1] = at[j];
      at[j] = temp;
      temp = bt[j + 1];
      bt[j + 1] = bt[j];
      bt[j] = temp;
      temp = id[j + 1];
      id[j + 1] = id[j];
      id[j] = temp;
      }
      }
      }
      int time1 = 0, completed = 0;
      while (completed < n) {
      int flag = 0;
      for (i = 0; i < n; i++) {
      if (at[i]

  • @sidemenfanboy2873
    @sidemenfanboy2873 ปีที่แล้ว +1

    Misse average waiting time float alle

  • @unnikuttan8819
    @unnikuttan8819 3 ปีที่แล้ว +3

    Miss ithinte pdf kitto

  • @shiiillpa
    @shiiillpa 2 ปีที่แล้ว

    PLEASE

  • @s.e.mtechnologies4740
    @s.e.mtechnologies4740 2 ปีที่แล้ว +1

    This is an international platform use English please

    • @yzx666
      @yzx666 2 ปีที่แล้ว +46

      u should learn malayalam to learn this or find another channel .

    • @abhirampradeep6037
      @abhirampradeep6037 2 ปีที่แล้ว +7

      @@yzx666 HEMME scn thenne

    • @joanlizgeogy3140
      @joanlizgeogy3140 ปีที่แล้ว +7

      Dude if u want English references u can refer a different video. Don't complain just because u can Lol

    • @yaswanthjk7727
      @yaswanthjk7727 ปีที่แล้ว +1

      BRUHHHHH.........learn malayalam dude or just take the code or u can atleast try to understand the algorithm
      No competence from ur side and still complaining....

    • @aromals9234
      @aromals9234 ปีที่แล้ว +1

      umbeko malare
      poi english umbeko ne

  • @LakshmyVenkitaraman
    @LakshmyVenkitaraman ปีที่แล้ว +14

    #include
    int main(){
    int bt[10]={0},at[10]={0},tat[10]={0},wt[10]={0},ct[10]={0};
    int n,sum=0;
    float totalTAT=0,totalWT=0;
    printf("Enter number of processes ");
    scanf("%d",&n);
    printf("Enter arrival time and burst time for each process

    ");
    for(int i=0;i

    • @sachinumendran545
      @sachinumendran545 8 หลายเดือนก่อน

      Can you please do share the other scheduling algos code also?