标签: c c++11 g++
在C ++中使用C样式代码,如:
#include <stdio.h> int main() { printf("hi\n"); return 0; }
可执行文件大小通常为:8.50 KB。 (使用-Os -s优化大小)
当添加-std = c ++ 11时,大小增加到32.50 KB。
是否与stdio.h有关或为什么尺寸会发生变化?
在code :: blocks上使用g ++版本6.3.0进行测试。操作系统:Windows 8.1专业版