/*C++ program to demonstrate example of setfill manipulator.*/ #include <iostream> #include <iomanip> using namespace std; int main() { char pName[3][30]={"Dove Soap","Colgate","Vim"}; int qty[3] ={5,10,15}; int i; cout << setw(30) << "Product Name" << setw(20) << "Quantity" << endl; for(i=0; i< 3; i++){ cout << setw(30) << setfill('-') << pName[i] << setw(20) << setfill('#') << qty[i] << endl; } return 0; }
Output
Product Name Quantity ---------------------Dove Soap###################5 -----------------------Colgate##################10 ---------------------------Vim##################15
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
setfill manipulator program in C++
Output
need an explanation for this answer? contact us directly to get an explanation for this answer