Write C program to check whether the triangle is equilateral
Before writing the C program to check whether the triangle is equilateral, we should know the properties of equilateral triangles. In geometry, an equilateral triangle is a triangle in which all three sides are equal. #include <stdio.h> int main() { int side1, side2, side3; //Get sides of a triangle from the user printf(“Enter sides of […]
Write C program to check whether the triangle is equilateral Read More »