Language
C++
Compiler
clang 15.0.7
Options
Warnings
Boost 1.80.0
C++2b(GNU)
no pedantic
$ clang++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.80.0-clang-15.0.7/include -std=gnu++2b
stream_iterator iterator demo
stringstream: creating and initializing with "1 2 3 4 5"
istream_iterator: creating and initializing to stringstream
ostream_iterator: creating and initializing to cout
partial_sum: iterating read(stringstream)/write(cout) till eof
1 3 6 10 15
Exit Code:
0