C++ Program to use endl and setw() Manipulators.

#include <iostream.h>
#include <conio.h>
#include <iomanip.h>

void main()
{
clrscr();

int x = 12, y = 123, z = 1234;

cout << “Without using setw() :”<< endl;
cout << x << endl;
cout << y << endl;
cout << z << endl;
cout << “\n With using setw() :”<< endl;
cout << setw(7) << x << endl;
cout << setw(7) << y << endl;
cout << setw(7) << z << endl;

getch();
}

Leave a comment