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 |
What is atoi?
Is empty stack c++?
Which one is better- macro or function?
What methods can be overridden in java?
Explain terminate() function?
How can you link a c++ program to c functions?
Define a constructor - what it is and how it might be called (2 methods)?
Is c++ low level?
How can you link a c program with a c function?
Explain what are mutator methods in c++?
State the difference between pre and post increment/decrement operations.
C++ program output? Explain output of this program. #include <iostream> using std::cout; using std::cin; int main() { cout<<cout<<' '; cout<<cin; return 0; } It prints some address in hexadecimal. what is it?