To find area and circumference of circle

#To find area and circumference of circle

1 posts

How to find area and circumference of circle using C Programming

C Program to find area and circumference of circle #include <stdio.h> int main() { int rad; float PI = 3.14, area, ci; printf("\nEnter radius of circle: "); scanf("%d", &rad... Read Mores
Codegyan

12-Apr-2023 18:11:54

57 Views C Programming 2 years ago