标签: c++
这两者之间有什么区别?
for(int i = 0; i<10; i++) cout<<i<<endl
for(int i = 0; i<10; ++i) cout<<i<<endl
我知道输出是一样的。 但是,编译器的级别是否存在微小差异?