Is it possible to get the source code back from binary file?



Is it possible to get the source code back from binary file?..

Answer / hrpynux@gmail.com

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

Post New Answer

More C++ General Interview Questions

What is array in c++ pdf?

0 Answers  


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


Write a program to reverse a linked list?

8 Answers   Catalytic Software, Satyam,


What are the total number of lines written by you in C/C++? What is the most complicated or valuable program written in C/C++?

2 Answers   Intel,


What is an operator function? Describe the function of an operator function?

0 Answers   Fidelity,






What is a multiset c++?

0 Answers  


What is an incomplete type?

1 Answers  


What is the difference between a declaration and a definition?

0 Answers  


What is an undefined reference/unresolved external symbol error and how do I fix it?

0 Answers  


What are static and dynamic type checking?

0 Answers  


class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.

2 Answers   Quark,


What do you mean by funtion prototype?

0 Answers  


Categories