Computer Science, asked by amishafilomeena1003, 9 months ago

please answer this question of computer working should be in IDLE answer all of them​

Attachments:

Answers

Answered by tiwarinikita0705
1

1 #include<stdio.h>

int main() {

int rad;

float PI = 3.14, area, ci;

printf("\nEnter radius of circle: ");

scanf("%d", &rad);

area = PI * rad * rad;

printf("\nArea of circle : %f ", area);

ci = 2 * PI * rad;

printf("\nCircumference : %f ", ci);

return (0);

}

Similar questions