# Introduction In this lab, you will learn how to compute the Interquartile Range (IQR) in C programming. The lab covers the steps to read and sort an array of numbers, find the positions of the first and third quartiles (Q1 and Q3), and then calculate the IQR as the difference between Q3 and Q1. By the end of this lab, you will have a solid understanding of how to perform this statistical analysis using C.
Click the virtual machine below to start practicing