Why is the function main() special?
No Answer is Posted For this Question
Be the First to Post Answer
Out of fgets() and gets() which function is safe to use and why?
how many trys can we write in one class
What is a far pointer? where we use it?
How do I run c++?
How do I start a c++ project?
What does new return if there is insufficient memory to make your new object?
What size is allocated to the union variable?
What is #include iostream in c++?
What is different in C++, compare with unix?
How does the copy constructor differ from the assignment operator (=)?
What is iterator c++?
Problem 5: Hero's Formula is A method for calculating the area of a triangle when you know the lengths of all three sides. Let a, b, c be the lengths of the sides of a triangle. The area is given by:A= pp-ap-b(p-c) | wherep= a+b+c2 | | Write a C-language code to calculate area of triangle using above method. Take the three lengths of the triangle from the user and display the area that your program calculates.