Saturday, 24 August 2013


Program to show Base of Number using dec, oct and hexadecimal Manipulator Function

Code:
/*Program to show Base of Number using dec, oct and hexadecimal 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 value is "<<dec<<value<<endl;
cout<<"Hexadecimal value is "<<hex<<value<<endl;
cout<<"Octal value is "<<oct<<value<<endl;
getch();
}

Sample Output:


Comment bellow for your Query and Feedback

Related Posts :



0 comments:

Confused? Feel free to ask

Post a Comment