cppreference.com
.
:
Notes
I/O OS .
8 8 8 .
16 16 . 16 (char, char16_t, char32_t, or wchar_t) .
char .
Example
#include <iostream>
int main()
{
std::printf("This\nis\na\ntest\n\nShe said, \"How are you?\"\n");
}
Output:
This
is
a
test
She said, "How are you?"