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