考慮下面的程序:大小的文本區域的
#include <stdio.h>
int main(void)
{
return 0;
}
當我運行以下命令:
gcc memory-layout.c -o memory-layout size memory-layout
我得到的輸出:
text data bss dec hex filename 960 248 8 1216 4c0 memory-layout
隨着文本區域包含程序的可執行指令,爲什麼輸出顯示文本區域的大小爲960,這相對於文件大小而言太大指示,據我可以數。
本文可能對您有些興趣:http://www.muppetlabs.com/~breadbox/software/tiny/teensy.html。 –
我認爲返回'0'有點草率,我推薦'#include',然後返回'EXIT_SUCCESS'。看看傳達意圖有多好? –
unwind