标签: compiler-optimization
考虑以下C代码:
int x = 9 + 5;
C编译器会在编译时添加 9 和 5 并将其减少到int x = 14;吗?还是将其保留为可以在运行时评估添加的内容?
int x = 14;