What's the difference between these two?
for(int i = 0; i<10; i++) cout<<i<<endl
for(int i = 0; i<10; ++i) cout<<i<<endl
I know the outputs are same. But, is there any tiny different in the level of compiler?
What's the difference between these two?
for(int i = 0; i<10; i++) cout<<i<<endl
for(int i = 0; i<10; ++i) cout<<i<<endl
I know the outputs are same. But, is there any tiny different in the level of compiler?