#include<iostream.h>
#include<conio.h>
#include<iomanip.h>
main()
{
cout<<setw(10)<<"**********BANK MANAGEMENT**********"<<endl;
cout<<setw(10)<<"1. Create a New Account."<<endl;
cout<<setw(10)<<"2.View Your Account."<<endl;
cout<<setw(10)<<"3.Delete Your Account."<<endl;
cout<<setw(10)<<"4.View Transactions."<<endl;
cout<<setw(10)<<"5.Exit."<<endl;
cout<<setw(10)<<"Please enter a no. between 1 and 5 ";
getch();
}
But why is only exit being shifted to the right...Not every other item.? And I am using borland c++ and don't know how to use std::right command the usual syntax doesn't work in it.!