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.
回答の評価の正しい手順を教えてもらえますか (内部作業あり)。
#include<stdio.h> main() { int a=10; printf("%d %d %d\n",a,a++,++a); return 0; }