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.
代码:
while( (c = getchar()) != EOF ){ putchar( c ); }
当我输入abc
abc
我猜输出是 aabbcc ,但输出是
aabbcc
abc abc
为什么 ?