// helloo.cpp // Ohjelma tulostaa tekstin Hello world! #include int main(void) { cout.operator<<("Hello world!"); cout.operator<<(endl); (cout.operator<<("Hello world!")).operator<<(endl); return 0; }