Armstrong Number or Not in C using Do-While loop
Before going to the program first let us understand what is a Armstrong Number? Armstrong Number: An Armstrong number of three digits is an...
Before going to the program first let us understand what is a Armstrong Number? Armstrong Number: An Armstrong number of three digits is an...
Before going to the program for Prime Number or Not first let us understand what is a Prime Number? Prime Number: A Prime Number is a number greater...
Program code to find Reverse of a Number in C: #include<stdio.h> #include<conio.h> void main() { int n,a,r,s=0; clrscr(); printf(“\n Enter The Number:”); scanf(“%d”,&n); a=n; //LOOP FOR FINDING THE REVERSE OF A NUMBER do { r=n%10;...
Program code to find Reverse of a Number: #include<iostream.h> #include<conio.h> void main() { int n,a,r,s=0; clrscr(); cout<<“\n Enter The Number:”; cin>>n; a=n; //LOOP FOR FINDING THE REVERSE OF A NUMBER do { r=n%10; s=s*10+r; n=n/10;...
Before going to the program first let us understand what is a Fibonacci Series? Fibonacci Series: Fibonacci series is nothing but a Series of Numbers which...
Before going to the program first let us understand what is a Fibonacci Series? Fibonacci Series: Fibonacci series is nothing but a Series of Numbers which...
Before going to the program first let us understand what is a Factorial of a Number? Factorial of a Number: The factorial of a Number n, denoted...
Before going to the program first let us understand what is a Factorial of a Number? Factorial of a Number: The factorial of a Number n, denoted...
Before going to the program first let us understand what is a Palindrome Number? Palindrome Number: It is a number which...
Before going to the program first let us understand what is a Palindrome Number? Palindrome Number: It is a number which...