Tagged: do-while loop

0

Prime number or Not in C using do-while Loop

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...

0

Reverse of a Number using do-while loop in C

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;...

2

Reverse of a Number using do-while loop in C++

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;...

3

Fibonacci Series in C using Do-While Loop

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...

2

Fibonacci Series in C++ using Do-While Loop

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...

6

Factorial of a Number in C using do-while Loop

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...