Skip to content

C++ Program to show Base of Number using setbase Manipulator Function

C++ Program to show Base of Number using setbase Manipulator Function

Code:

/*C++ Program to show Base of Number using setbase Manipulator Function*/
#include<iostream.h>
#include<conio.h>
#include<iomanip.h>
void main(void)
{
int value;
clrscr();
cout<<“nEnter the Value n”;
cin>>value;
cout<<“Decimal base ” << setbase(10) << value << endl;
cout<<“Hexadecimaal base ” << setbase(16) << value << endl;
cout<<“Octal base ” << setbase(8) << value << endl;
getch();
}


Sample Output:


Comment bellow for your Query and Feedback

Leave a Reply

Your email address will not be published. Required fields are marked *

error: Content is protected !!