Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以确定 C 程序占用的空间吗?目前我在 Windows XP 上使用 GCC 编译器。实际上我想检查 C 程序消耗了多少空间。
如果某个函数告诉我 C 中其他函数消耗的大小,那就太好了。
ex- fun() consume 1028 bytes to run.
在磁盘上:当然:编译它,制作ls或dir.
ls
dir
在内存中:不。想象一下一个程序,它把互联网上的东西加载到内存中。由于内存是动态分配的,并且您事先不知道数据有多大,因此无法判断内存使用情况(理论上这只是停机问题的结果)。