Back To C Basics Index
//program to input radius of circle and find area of circle #include
#include
void main() { float radius; float area; clrscr(); printf("enter radius of circle "); scanf("%f",&radius); area=3.14f*radius*radius; printf("area of circle is %f",area); getch(); }