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...
Sunday, 6 June 2021
Friday, 4 June 2021
C++ program to calculate the sum of n complex number without class
C++ program to calculate the sum of n complex number without class
//#include <iostream>#include<bits/stdc++.h>using namespace std;int main(){ int num, i, l, j; cout << "Enter&nbs...
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{ ...
Thursday, 27 May 2021
Array Data Type To Get 5 Number Input And Print Them In C Programming
Array Data Type To Get 5 Number Input And Print Them In C Programming
#include<stdio.h>
#include <conio.h>
int main()
{
int num[5];
int i;
for (i = 0; i < 5; i++)
{
printf("Enter %d number data :", i + 1);
scanf("%d", &num[i]);
}
for...
C programming structure example with array
C programming structure example with array
#include <stdio.h>
#include <conio.h>
#include <string.h>
struct employee
{
char name[20];
int age;
float salary;
};
int main()
{
struct employee emp1, emp2, emp3;
printf("Enter the name ,age and salary of the 3 employee\n");
...