Introduction
In this lab, we will learn how to write a C program to find the area and circumference of a circle. We will use the formula area = PI * radius * radius
and circumference = 2 * PI * radius
. We will be using the stdio.h
library to read and write data.