Automorphic Number
//Entered number is automorphic number or not? #include<iostream> #include<math.h> using namespace std; int automorphic(int n)...
//Entered number is automorphic number or not? #include<iostream> #include<math.h> using namespace std; int automorphic(int n)...
//Is Number is Prime or Not. //Prime Nos. upto N. //First N Prime Nos. //Prime Nos. Pattern #include<iostream> #include<iom...
//First N Prime Nos. in C++ #include<iostream> #include<iomanip> using namespace std; int main() { int i,j,num,flag=0...
#include<iostream.h> void main() { int n1, n2, n3, i, pro, lcm, hcf=1; cout<<"Enter 1st Number : "; cin>...
//Program to Reverse Each Word of a String. #include<string.h> #include<iostream.h> #include<conio.h> void main() {...
//Program to print Fibonaaci Series. #include<iostream> using namespace std; int main() { int i, n, n1=0, n2=1, n3; cout&l...
//Reverse the entered number in C++. #include<iostream> using namespace std; int main() { long n, rev, temp; cout<<...
Download the File. Click here to Watch the Explanation & Developing Video