How to declaring variables in c++?
No Answer is Posted For this Question
Be the First to Post Answer
When to use Multiple Inheritance?
Explain function overloading and operator overloading.
Explain linear search.
Why is it called c++?
Is c++ low level?
If a base class declares a function to be virtual, and a derived class does not use the term virtual when overriding that class, is it still virtual when inherited by a third-generation class?
Can static member variables be private?
Is std :: string immutable?
What are dynamic type checking?
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.
What does ctime() do?
How const functions will be treated by compiler?