Can we generate a C++ source code from the binary file?
Answers were Sorted based on User's Feedback
Answer / brainless
Microsoft's "managed c++" code maybe supports this feature.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / dipak
It can possible, there are so many de-compilers avaliable
now to do this job.
| Is This Answer Correct ? | 0 Yes | 2 No |
What is capacity in vector in c++?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
what are the iterator and generic algorithms.
What do you mean by persistent and non persistent objects?
What is the header file for setw?
what is the emaning of '#include" "'?
Please explain class & object in c++?
write a c++ program that gives output 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 using looping statement
Is c++ platform dependent?
Is there anything you can do in C++ that you cannot do in C?
What is virtual destructors? Why they are used?
What is a wchar_t in c++?