No, we cannot generate a c++ source code from the binary file bcoz we can compile highlevel language to lowlevel language but not lowlevel language to highlevel language
Moparthi Aravind
Above answer was rated as good by the following members: yzesong
RE: Can we generate a C++ source code from the binary ...
Technically this is possible but in my knowledge their no such software available yet.Why this is possible? In program flow we do like this to generate binary file.High level language programming code -low level programming code- hex code- binary code.How we can do reverse can be illustrated with this example. When I type 0 on screen the ASCII equivalent is 65 and so the binary code will be by converting 65 (01010 0101) so I can recognize this and decode this. Same technique can be used. Some secret mission defense org. I heard have this code splitter from binary to assembly language (low level language)/ Converter type devices available they use them for secret national purpose.
RE: Can we generate a C++ source code from the binary ...
No we cannot generate a c++ source code from the binary file bcoz we can compile highlevel language to lowlevel language but not lowlevel language to highlevel language
RE: Can we generate a C++ source code from the binary file?
If you can load the binary file using some kind of debugging tools which also display the binary code in ASCII characters for the code segment you may see the corresponding C++ source code which displayed in ASCII characters.