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 the basic structure of a c++ program?
Do you need a main function in c++?
How do you declare A pointer to function which receives an int pointer and returns a float pointer
Do we have to use initialization list in spite of the assignment in constructors?
What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal
Is c++ proprietary?
What is the sequence of destruction of local objects?
What is overloading unary operator?
When does a name clash occur?
Should you pass exceptions by value or by reference?
What do you mean by storage classes?
Can you think of a situation where your program would crash without reaching the breakball, which you set at the beginning of main()?