C Program to convert a given decimal number into its binary equivalent

This C program converts a given decimal number into its binary equivalent. A decimal number uses base 10 (digits 0–9), while a binary number uses base 2 (only 0 and 1) — the language computers actually work in. Converting between them is one of the first things every programmer learns. In this tutorial we walk …

C Program To Find The Largest Of 3 Numbers

C Program To Find The Biggest(Largest) Of 3 Numbers. In this program, We find the biggest of three number using simple else-if ladder. Read more about C Programming Language .  [gist id=”7019035″ show_line_numbers=”1″ highlight=”26-32″] Read more Similar C Programs Array In C Number System Simple C Programs You can easily select the code by double …

C Program to classify the triangle as equilateral, isosceles and scalene

C Program to classify the triangle as equilateral, isosceles and scalene.Equilateral triangle means all three side and angles are equal(i.e. 60 degree).Isosceles triangle means any two side and angles are equal.Scalene triangle means , any sides and any angles are not equal. Read more about C Programming Language . Read more Similar C ProgramsLearn C …

C Program to compute the area of an isosceles triangle

C Program to compute the area of an isosceles triangle. Isosceles Triangle is triangle, in which any two sides and angles are equal. Here, We check the given triangle is Isosceles or not also and print the suitable messages. Read more about C Programming Language . Read more Similar C ProgramsLearn C ProgrammingSimple C Programs …