From left to right, associativity means that the expression is implicitly enclosed in brackets:
(((cout << "foo") << "bar") << "baz")
In other words, the left-most operation comes first.
In contrast, assignment in all languages is right-associative:
a = b = c + 5;
c + 5 "a", "b", .