Anything related to C or C++ standard library, or Ruby functions `puts` (C, Ruby) or `std::puts` (C++). These functions are used to write a null-terminated string (C, C++), or Ruby's `String` class to the standard output stream `stdout`.
Anything related to C or C++ standard library, or Ruby functions puts
(defined in <stdio.h>
C standard header, or included in core for Ruby) or std::puts
(defined in <cstdio>
C++ standard header). These functions are used to write a null-terminated string (C, C++), or Ruby's String
class to the standard output stream stdout
.
See CPPreference.com: