Can we generate a C++ source code from the binary file?

Answers were Sorted based on User's Feedback



Can we generate a C++ source code from the binary file?..

Answer / brainless

Microsoft's "managed c++" code maybe supports this feature.

Is This Answer Correct ?    2 Yes 0 No

Can we generate a C++ source code from the binary file?..

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

Post New Answer

More C++ General Interview Questions

Can I have a reference as a data member of a class? If yes, then how do I initialise it?

0 Answers  


What is the difference between structures and unions?

0 Answers  


Who invented turbo c++?

0 Answers  


What is object slicing and how can we prevent it?

2 Answers   Tech Mahindra,


How does work in c++?

0 Answers  






Write about all the implicit member functions of a class?

0 Answers  


What is the difference between the functions memmove() and memcpy()?

0 Answers  


Should a constructor be public or private?

0 Answers  


What is else if syntax?

0 Answers  


What is the difference between global variables and local variable

0 Answers  


class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected

3 Answers   Quark,


Find out the bug in this code,because of that this code will not compile....... #include <iostream> #include <new> #include <cstring> using namespace std; class balance { double cur_bal; char name[80]; public: balance(double n, char *s) { cur_bal = n; strcpy(name, s); } ~balance() { cout << "Destructing "; cout << name << "\n"; } void set(double n, char *s) { cur_bal = n; strcpy(name, s); } void get_bal(double &n, char *s) { n = cur_bal; strcpy(s, name); } }; int main() { balance *p; char s[80]; double n; int i; try { p = new balance [3]; // allocate entire array } catch (bad_alloc xa) { cout << "Allocation Failure\n"; return 1; }

2 Answers   Impetus,


Categories