Hi..
Could you any one tell me how to find the run time binary utilization of memory in RAM with out run the binary..??
Will the size of binary while executing and compiled binary size are same.?
Thanks ,
Ganesh.
Printable View
Hi..
Could you any one tell me how to find the run time binary utilization of memory in RAM with out run the binary..??
Will the size of binary while executing and compiled binary size are same.?
Thanks ,
Ganesh.
No. The executable file may contain instructions to allocate, say, a 1GB static buffer, but that'll only occupy a few bytes in the file. Also, the code may dynamically allocate lots of memory, especially if it has recursive components.