GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::ends(3) C++ Standard Libary std::ends(3)

std::ends - std::ends


Defined in header <ostream>
template< class CharT, class Traits >
std::basic_ostream<CharT, Traits>& ends( std::basic_ostream<CharT, Traits>& os );


Inserts a null character into the output sequence os as if by calling
os.put(CharT()).


This is an output-only I/O manipulator, it may be called with an expression such as
out << std::ends for any out of type std::basic_ostream.


This manipulator is typically used with std::ostrstream, when the associated output
buffer needs to be null-terminated to be processed as a C string.


Unlike std::endl, this manipulator does not flush the stream.


os - reference to output stream


os (reference to the stream after insertion of the null character)

// Run this code


#include <cstdio>
#include <strstream>
int main()
{
std::ostrstream oss;
oss << "Sample text: " << 42 << std::ends;
std::printf("%s\n", oss.str());
oss.freeze(false); // enable memory deallocation
}


Sample text: 42


ostrstream implements character array output operations
(deprecated in C++98) (class)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.