Evaluate the following expression as C++ would do :8 * 9 + 2 * 5
a) 82
b) 79
c) 370
d) list
No Answer is Posted For this Question
Be the First to Post Answer
What are the new features that iso/ansi c++ has added to original c++ specifications?
What is the benefit of encapsulation?
What is c++ redistributable?
Explain the isa and hasa class relationships.
What are the advantages of using typedef in a program?
What is the full form of india?
What is the difference between passing by reference and passing a reference?
Is facebook written in c++?
Why do we use string in c++?
What is a node class?
Explain how a pointer to function can be declared in 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.