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

Are strings mutable in c++?

0 Answers  


Explain virtual class and friend class.

0 Answers  


What are the benefits of pointers?

0 Answers  


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

1 Answers  


Explain the differences between private, public and protected and give examples.

0 Answers  






which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?

0 Answers  


What is the maximum value of a unsigned char a) 255 b) 256 c) 128

0 Answers  


Can we use clrscr in c++?

0 Answers  


Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];

4 Answers   Quark,


Evaulate: 22%5 a) 2 b) 4 c) 0

0 Answers  


Can you please explain the difference between static and dynamic binding of functions?

0 Answers  


How do you traverse a btree in backward in-order?

0 Answers  


Categories