Algorithm and Flowchart to find Fibonacci series

In this tutorial, we will write an algorithm to find the Fibonacci series, we will also learn to draw the flowchart to find the Fibonacci series for a number. You may go through the following topic first. Algorithm in C Let us first understand what is fibonacci series. Fibonacci series is the series of numbers … Read more

Currency Conversion Program in C

In this tutorial, we will write a C program for currency conversion. Before that, you may go through the following topic in C. Explanation: In this program, there is a use of switch statements in C. The program gives the user choice for the conversion. For this example, we have taken four currencies those are … Read more

C Program to Find the Area of a Rectangle

In this tutorial, we will write a C program to find the area of a rectangle. Before that, you may go through the following topic in C. Explanation: The program asks the user to enter the value of length and breadth as an input. Then simply using the formula (area = length * breadth), we … Read more