Is it possible to get the source code back from binary file?
The code is probably written in C++ which is essentially impossible to decompile to the original source code. Unless you want to spend years reading assembly code, its very unlikely you can get the original code.
| Is This Answer Correct ? | 0 Yes | 0 No |
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.
Show the declaration for a static function pointer.
What are destructors?
Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].
Can a constructor return a value?
Explain the purpose of the keyword volatile.
Explain the different access specifiers for the class member in c++.
3- Write a program to find larger and smaller of the two numbers.
Why c++ is created?
What is the exit function in c++?
Does a derived class inherit or doesn't inherit?
What is a template in c++?