# Introduction In this lab, you will learn how to compute the Cumulative Distribution Function (CDF) in C. The lab covers two main steps: reading distribution parameters and the x-value, and then computing the CDF by summing probabilities from negative infinity to the given x-value using the standard normal distribution. The lab provides the complete code implementation and guides you through the process step-by-step, ensuring you have a solid understanding of the CDF calculation in C.
Click the virtual machine below to start practicing