标签: c
在C中,这些操作“1 + 1”,“1 + 2”,“a + 1”何时执行?
int x = 1+1; void foo(int a) { const int b = 1 +2; const int c = a + 1; }
当函数启动或编译代码时?
感谢。