Advertisement
Guest User

aaa

a guest
Jul 11th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3. #define PI 3.14
  4. void main()
  5. {
  6. float area, radius;
  7.  
  8. printf("enter the area of circle, %f\n");
  9. scanf("%f", &radius);
  10. area = PI 3.14* radius*radius;
  11. printf("enter the radius, %f\n":);
  12.  
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement