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

Prime number or Not in C using 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...

2

Factorial of a Number in C++ using Recursion

Before going to the program first let us see what is Factorial of a Number? and what is Recursion? Factorial of a Number:                   The factorial of a Number n, denoted by...

0

Factorial of a Number in C using Recursion

Before going to the program first let us see what is Factorial of a Number? and what is Recursion? Factorial of a Number:                   The factorial of a Number n, denoted by...

0

C program to convert Binary to Decimal

Before going to the program to convert Binary to Decimal first let us see how to convert binary to decimal. Let us assume the Binary Number as 110101. The Decimal Number is equal to the...

2

Armstrong Number or Not in C using 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...

0

Prime number or Not in C using For 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

Ex.No:7b Fibonacci number Using Recursion

AIM:         To write a program to find the ith Fibonacci number using recursion, given F(0)=0, F(1)=1. ALGORITHM: Step 1: Start the program Step 2: read num Step 3: f <- fibo(num)...