C Program to calculate Area of Equilatral triangle

#include<stdio.h> #include<math.h> int main() { int triangle_side; float triangle_area, temp_variable; printf(“\nEnter the Side of the triangle:”); scanf(“%d”,&triangle_side); temp_variable = sqrt(3)

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