#Find Area of Scalene Triangle using C
1 posts
How to Find Area of Scalene Triangle using C
C Program to Find Area of Scalene Triangle :
#include <stdio.h>
#include <math.h>
int main() {
int s1, s2, angle;
float area;
printf("\nEnter Side1 : ");
scanf("... Read Mores
Prathmesh Yelne
12-Dec-2021 12:44:54