????2?????????????????飩???洢????У?
????int main()
????{
????int a;
????int b[100];
????printf("hellow world ");
????}
????text       data        bss        dec        hex    filename
????1132        256          8       1396        574    a.out
????3???????????????洢??text?У?
????int main()
????{
????int a;
????int b[100] = L"qxj511";
????printf("hellow world ");
????}
????text       data        bss        dec        hex    filename
????1639        256          8       1903        76f    a.out
????4????о??????????????????洢?? BSS ???У?
????int main()
????{
????int a;
????int b[100] = L"qxj511";
????static c;
????printf("hellow world ");
????}
????text       data        bss        dec        hex    filename
????1639        256         12       1907        773    a.out
????5?????????????????????洢?? data ???У?
????int main()
????{
????int a;
????int b[100] = L"qxj511";
????static c = 1;
????printf("hellow world ");
????}
????text       data        bss        dec        hex    filename
????1639        260          8       1907        773    a.out
????6????о??????????????????洢?? bss ???У?
????int d;
????int main()
????{
????int a;
????int b[100] = L"qxj511";
????static c = 1;
????printf("hellow world ");
????}
????text       data        bss        dec        hex    filename
????1639        260         12       1911        777    a.out
????7????????????????????洢?? data ???У?
????int d = 1;
????int main()
????{
????int a;
????int b[100] = L"qxj511";
????static c = 1;
????printf("hellow world ");
????}
????text       data        bss        dec        hex    filename
????1639        264          8       1911        777    a.out