List out function which we can call without using object
Answer / manoj kumar kar
Static Functions
Friend Functions
The above 2 functins can be called without using objects.
Is This Answer Correct ? | 11 Yes | 0 No |
What is the best ide for c++?
Explain the term memory alignment?
What is the advantage of an external iterator.
How can you link a c program with a c function?
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
What is the difference between interpreters and compilers?
What is the full form nasa?
Is multimap sorted c++?
Evaluate as true or false: !(1 &&0 || !1) a) True b) False c) Invalid statement
Using a smart pointer can we iterate through a container?
Is c++ a programming language?
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.