在C中,写下这样的内容是合法的:
int foo = +4;
然而,据我所知道的,一元+的+4是一个空操作.是吗?
+
+4
c
以下是做什么的?我认为+仅用于整数提升.
char c[20] = "hello"; foo(+c); foo(+"hello");
c++
c ×1
c++ ×1