Hey,
i watched the Reverse Engineering C++ Malware With IDA Pro.
Then I wanted to try it myself and take a look at my own code in IDA.
#include <iostream>
class Rectangle {
int width, height;
public:
void set_values(int w, int h);
int area() { return width * height; }
};
void...
This site uses cookies to personalise content, your experience and to keep you logged in. By using this site, you are consenting to our use of cookies.