Introduction
In this lab, you will learn how to create a Rectangle Area Calculator using C programming language. The lab covers the following steps:
Declare a Function to Calculate Rectangle Area: You will learn how to declare a function that takes the height and width of a rectangle as input, calculates the area, and returns the result.
Prompt User for Rectangle Dimensions: You will learn how to use standard input functions in C to prompt the user to enter the height and width of the rectangle.
Call the Rectangle Area Function: You will learn how to call the previously declared function and pass the user-provided dimensions to calculate the area.
Display the Calculated Rectangle Area: You will learn how to display the calculated rectangle area to the user.
Compile and Run the C Program: You will learn how to compile and run the C program to see the final result.