1.

Write a program to find area and volume of sphere​

Answer» ONG>ANSWER:

C PROGRAM

#include

int main()

{

int radius=48;

float pie=3.14285714286;

double volume=(4.0/3.0)*pie*(radius*radius*radius);

printf("Volume of the SPHERE=%F",volume);

}



Discussion

No Comment Found