0
What does cout<<i<<" "; means?
cout
5 ответов
+ 2
i prints i and a space after it
+ 1
Printing the value of i and a space after it.
+ 1
thanks
+ 1
cout belongs to the standard library so if you don't include it you'll have to write
std::cout<<i<<" ";
+ 1
it prints to the output screen