Advertisement

Program to find the area of circle ?

 Program to find the area of circle

#include<stdio.h>

#include<conio.h>

void main()

{    float r,area;

      clrscr();

      printf("Enter radius"):

      scanf("%f",&r);

      area=2*3.14*r;

      printf("Area of circle is %f",area);

      getch();

}

Redmi Note 10T

Post a Comment

0 Comments