#include "area01.h" main() { float a,b; clrscr(); printf("\nEnter the radius of the circle : "); scanf("%f",&a); b=AREA(a); printf("\nThe area of the circle is %f",b); getch(); }