What do you mean by Stack unwinding?
Answer / harendra pal
It is a process during exception handling when the destructor is called for all local objects between the place where the exception was thrown and where it is caught.
| Is This Answer Correct ? | 0 Yes | 0 No |
How does atoi function work?
Can I uninstall microsoft c++ redistributable?
What is the difference between passing by reference and passing a reference?
How the compilers arranges the various sections in the executable image?
Difference between overloaded functions and overridden functions
"How will you merge these two arrays? Write the program Array: A 1 18 22 43 Array: B 3 4 6 20 34 46 55 Output Array: C 1 3 4 6 18 20 22 34 43 46 55"
9 Answers College School Exams Tests, HCL,
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.
Define token in c++.
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
What is the auto keyword good for in c++?
What is a volatile variable in c++?
When does a name clash occur?