C Program to calculate Area and Circumference of Circle

#include <stdio.h> int main() { int circle_radius; float PI_VALUE=3.14, circle_area, circle_circumf; printf(“\nEnter radius of circle: “); scanf(“%d”,&circle_radius); circle_area = PI_VALUE

Read more

Write a C program to calculate the area & perimeter of the rectangle, and the area & circumference of the circle

Problem Statement: The length & breadth of a rectangle and radius of a circle are input through the keyboard. Write

Read more