Sunday, 6 June 2021

C++ Program to input a decimal number and print in Binary, Octal, and Hexadecimal form with inbuilt function itoa

 C++ Program to input a decimal number and print in Binary, Octal, and Hexadecimal form with inbuilt function itoa This function is not defined in ANSI-C and is not part of C++, but is supported by some compilers.  #include <iostream>#include <stdlib.h>#include<iomanip>using namespace std;int main (){  int i;  char buffer [20];  cout<<"Enter The Number : ";  cin>>i;  cout<<"------------------------------------------------------------"<<endl;  itoa (i,buffer,10);  cout<<setw(15)<<"Decimal : "<<buffer<<endl;  itoa (i,buffer,16);  cout<<setw(15)<<"Hexadicimal : "<<buffer<<endl;  itoa (i,buffer,2);  cout<<setw(15)<<"Binary : "<<buffer<<endl;  itoa (i,buffer,8);  cout<<setw(15)<<"Octal : "<<buffer<<endl;  return 0;}  Syntax...
Share:

Friday, 4 June 2021

Friday, 28 May 2021

Create a structure Book with entities - bname,aname,page,price.Input data for 10 books .Print the detail of the book with highest page number.

Create a structure Book with entities - book name, author name, page, price.Input data for 10 books. Print the detail of the book with the highest page number. #include <stdio.h>#include <conio.h>#include <string.h>/*Structure define*/struct bookList{ ...
Share:

Thursday, 27 May 2021