For example:
If I have a function with a name void Does_Stuff(int arg)and call it in the main function, then the empty content is loaded into memory ONLY on the first call? Or is it loaded into memory during program initialization?
And after you called Do_Stuff basically, can I manually unload it from memory?
For reference, the operating system in which I run is Windows 7, and I compile it using MinGW.
source
share