Dec 13, 2011

Program : Using setfill Function

Program : Using setfill Function

Its Similar Function as setw() using iomanip header file in this we use both setw and setfill function. Its used to fill setw() left spaces with any character or symbols like last example : Hello  World using setfill('*') we can display Hello**World



Check the following Program for How its work

#include<iostream.h>
#include<conio.h>
#include<iomanip.h>
int main()
{

cout << "Hello"<<setw(7)<<setfill('*')<<"World";

/* Here Hello is print as its and setw(7) make 7 columns in which its store World value that take 5 column from right and two column is left blank so to fill that part with particular character or symbol like in this i fill that two blank space with * value So Output will Hello**World     
*/
getch();
return 0;
}

OUTPUT




Related Posts:

  • Using Nested Condition Using Nested Condition Nested Condition is if else condition that is used under if or else condition. Its condition within condition. Like : We have… Read More
  • Program : Using Bool Data Type Using Bool Data Type Bool data type can store two value only 0 or 1. o for False & 1 For True. if define Bool variable and that variable contain… Read More
  • Using else if statement Using else if statement Else if statement is similar to if condition. In else-if condition you can give more than one condition like we have to give… Read More
  • Using Conditional Statements Using Conditional Statements The if statement is used to check the condition. If Condition is true Then particular code execute and if condition is … Read More
  • Program : Using #define Function Using #define Function #define use to define a function or value or any work that particular keyword replace with that work like to display on scree… Read More

0 comments:

Post a Comment