c | neuer Füllbuchstabe |
Rückgabewert: ein implementationsabhängiger Manipulator,
der bei str«manip
die Anweisung strom.fill©;
ausführt.
#include <iostream> #include <iomanip> int main() { int i = 25; std::cout << std::setw(10) << std::setfill('#') << i << '\n'; }