CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C++ Quiz #65

setfill Output

mediumStreams

What is the output of the following code? ``cpp #include <iostream> #include <iomanip> using namespace std; int main() { cout << setfill('*') << setw(6) << 42; } ``