In inline " expression passed as argument are evalauated
once " while in macro "in some cases expression passed as
argument are evaluated more than once " --> i am not getting
it plz help to make me understand....
No Answer is Posted For this Question
Be the First to Post Answer
why and when we can declar member fuction as a private in the class?
Is c++ a programming language?
Can a new be used in place of old mallocq? If yes, why?
How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?
What is realloc() and free()? What is difference between them?
Who invented turbo c++?
Define the process of error-handling in case of constructor failure?
Does c++ have arraylist?
What is stoi in c++?
What is c++ and its features?
Does c++ have string data type?
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.