<<< Stream I/O Applications     Index     Stream Input Concept >>>

3. Stream Output Concept


  •   hardware monitor

  • 
        std::cout << "HELLO";
        std::cout << '\n';
        std::cout << 123;
    
    
H E L L O \n 1 2 3 ... ...

<<< Stream I/O Applications     Index     Stream Input Concept >>>