Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Can you explain this code to me in C language please? counter = 0; } if(i == limit - 1) { i = 0; }

Can you explain this code to me in C language please?

counter = 0; } if(i == limit - 1) { i = 0; } else if(P[i + 1].arrivalTime <= total) { i++; } else { i = 0; } } for (i = 0; i < limit; i++) { totalWaitTime += P[i].waitTime; totalResponseTime += P[i].responseTime; totalBurstTime += P[i].burstTime; } printf(" Response time:"); for (i = 0; i < limit; i++) { printf("%d ", P[i].responseTime); }

printf(" Throughput:%f", (float)totalBurstTime / (float)limit ); printf(" Average waiting time:%f", (float)totalWaitTime / (float)limit); return 0;

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beyond Big Data Using Social MDM To Drive Deep Customer Insight

Authors: Martin Oberhofer, Eberhard Hechler

1st Edition

0133509796, 9780133509793

More Books

Students also viewed these Databases questions

Question

Explain the pages in white the expert taxes

Answered: 1 week ago

Question

In your own words, summarize the primary objectives of unions.

Answered: 1 week ago