write(2) - Linux manual page - man7.org
man7.org › linux › man-pageswrite - write to a file descriptor LIBRARY top Standard C library ( libc, -lc ) SYNOPSIS top #include <unistd.h> ssize_t write (int fd, const void buf[.count], size_t count); DESCRIPTION top write () writes up to count bytes from the buffer starting at buf to the file referred to by the file descriptor fd .
::write - C++ Users
cplusplus.com › reference › ostreamWrite block of data Inserts the first n characters of the array pointed by s into the stream. This function simply copies a block of data, without checking its contents: The array may contain null characters, which are also copied without stopping the copying process. C++98 C++11