std::memset (3) - Linux Manuals
std::memset: std::memset
NAME
Synopsis
Defined in header <cstring>
void* memset( void* dest, int ch, std::size_t count );
Converts the value ch to unsigned char and copies it into each of the first count characters of the object pointed to by dest. If the object is a potentially-overlapping_subobject or is not TriviallyCopyable (e.g., scalar, C-compatible struct, or an array of trivially copyable type), the behavior is undefined. If count is greater than the size of the object pointed to by dest, the behavior is undefined.
Parameters
dest - pointer to the object to fill
ch - fill byte
count - number of bytes to fill
Return value
dest
Notes
std::memset may be optimized away (under the as-if rules) if the object modified by this function is not accessed again for the rest of its lifetime (e.g. gcc_bug_8537). For that reason, this function cannot be used to scrub memory (e.g. to fill an array that stored a password with zeroes). Solutions for that include std::fill with volatile pointers, C11 memset_s, FreeBSD explicit_bzero or Microsoft SecureZeroMemory.
Example
// Run this code
Output:
See also
memcpy (function)
memmove (function)
wmemset (function)
fill (function template)
fill_n (function template)
is_trivially_copyable checks if a type is trivially copyable
(C++11)