Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
int main() { int x = 3, z ; z = x / + + x ; printf ("x = %dz = %d", x , z ); return 0; }
x=4 z=0出力はorになると思いましたx=4 z=1。しかし、私は得てx=3 z=1います。
x=4 z=0
x=4 z=1
x=3 z=1