decimal to binary conversion using c++
DECIMAL TO BINARY Note: decimal to binary , This is a program in c++. This is used to convert any decimal number into integer. This is only valid for DECIMAL TO BINARY conversion. Decimal to Bin...
View Articlelcm and hcf WAP using c++
lcm and hcf hcf lcm and hcf #include<iostream.h> #include<conio.h> int main() { int a,b,x,y,t,gcd,icm; cout<<“Enter two integer \n”; cin>>x>>y; a=x; b=y; while(b != 0) {...
View Articlefile handling in c++ programing
file copy file handling in c file handling in c: This program is used to copy any file. It can be used to copy any text file of the system. This is a bit advanced form of coding in turbo c++....
View ArticleArray Reverse
Array Reverse: This program Array Reverse is used to reverse the given number. It stores the numbers in the form of arrays. It uses for loop to print the inverse of elements stored in array. Code:...
View ArticlePalindrome Number
Palindrome Number: Palindrome Number : A palindrome is a word, phrase, number, or other sequence of characters which reads the same backward and vice-versa. Allowances may be made for adjustments to...
View ArticleVowels Program
Vowels Program Vowels Program: This is a program to find whether the entered string is vowel or not. There are only five vowels out of our 26 alphabets. They are A,E,I,O,U and a,e,i,o,u. Code:...
View ArticleCall by Value
Value Call Value Call : This program is shows us how to call a function. There are two ways of calling a function. We have used call by value method to call the function. Code:...
View ArticlePrime Number
Prime Number:- Prime Number :WAP to check prime numbers. Code:- /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools |...
View Article