If I have a program in C++/C (language doesn't matter much, just needed to illustrate a concept):
#include <iostream>
void foo() {
printf("in foo");
}
int main() {
foo();
return 0;
}
What happens in the assembly? I'm not actually looking for assembly code as I haven't learned it yet, but what's the basic principle of calling a function in assembly (preferably in pseudo-code)? I understand that the specifics vary in different languages, but is there a common idea?
