Program: Write a program to find the area of a circle. The program should use two procedures. The first procedure will print out the program heading and ask the user to enter the radius.
The second procedure should calculate the area.
The area of the circle is calculated as PI * radius * radius where PI is the constant 3.14159.
Can you implement a program that finds the area of a circle - evaluate the area?