Introduction
In this lab, we will create a C program that calculates the area and circumference of a circle. This simple program demonstrates several fundamental programming concepts including variable declaration, user input processing, mathematical calculations, and formatted output display.

We will use the mathematical formulas:
- Area of a circle = π × radius²
- Circumference of a circle = 2 × π × radius
By the end of this lab, you will have written a complete C program that takes user input and performs calculations using these formulas.