// use of setfill and setw functions of iomanip header file
#include<iostream>
#include<conio.h>
#include<iomanip>
using namespace std;
int main()
{
cout<<setfill('x')<<setw(10);
cout<<77<<endl;
getch(); return 0;
}
#include<iostream>
#include<conio.h>
#include<iomanip>
using namespace std;
int main()
{
cout<<setfill('x')<<setw(10);
cout<<77<<endl;
getch(); return 0;
}
No comments:
Post a Comment