Tagged Questions
-1
votes
3answers
756 views
Thought experiment with __stdcall and corrupted stack (C++)
My mind was wandering today on the topic of function pointers, and I came up with the following scenario in my head:
__stdcall int function (int)
{
return 0;
}
int main()
{
...