Advertisement
Fahim_789

Area of circle

May 16th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     float radious,area;
  5.  
  6.     printf("Enter the radius : ");
  7.     scanf("%f",&radious);
  8.     area=3.1416*radious*radious;
  9.     printf("area = %.2f\n",area);
  10.     return 0;
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement