kennen:include:print
<print>
std::print(
formatstring,args)
und std::println(
formatstring,args)
erzeugen Unicode-taugliche Ausgaben.
Sie nutzen die gleichen Formatierungsregeln wie die <format>-Bibliothek.
Dem Formatstring kann ein Ausgabestrom (<ostream>) vorangestellt werden.
- print.cpp
#include <print> int main() { std::println("Hallo, C++{}", 23); }
kennen/include/print.txt · Zuletzt geändert: 2024-11-01 10:35 von rrichter