Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #define PI 3.14
- int main() {
- float RADIUS, AREA;
- printf("Enter the radius = ");
- scanf("%f", &RADIUS);
- AREA = RADIUS * RADIUS * PI;
- printf("Area = %.2f", AREA);
- return 0;
- }
Add Comment
Please, Sign In to add comment