After compiling into console exe, how does a C++ function, as simple as below:
int sum(int a, int b){
return a + b;
}
int main(){
std::cout << sum(3, 5);
return 0;
}
be calculated in memory? Is there an address or pointer of any memory block or similar?
Thanks,