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

Menu Driven Program using Switch Case in C

In this tutorial, we will write a menu-driven program in C. We will use the switch case statement present in C to create menus or options. Before that, you may go through the following topic in C programming. C Menu-driven Program using switch case: This is a menu program in C that displays a menu … Read more

C Program to check whether a Number is Binary or Not

In this tutorial, we will write a program to check for the binary number in C. What is a Binary Number? A binary number is a number expressed in the base-2 numeral system that is the number that contains 2 symbols to represent all the numbers. The symbols are 0 and 1. For example: 101011, 110011110, 10001111 are binary numbers. … Read more

C Program to Convert Hexadecimal to Octal

In this tutorial, we will write a program to convert hexadecimal to octal in C. Before that, you must have knowledge of the following topics in C. Hexadecimal number The hexadecimal number is represented with a base of 16. It has digits from 0 to 15 to represent, However after 9 the values are represented … Read more

C Program to Convert Octal to Hexadecimal

In this tutorial, we will write a program to convert octal to hexadecimal in C. Before that, you must have knowledge of the following topics in C. Hexadecimal number The hexadecimal number is represented with a base of 16. It has digits from 0 to 15 to represent, However after 9 the values are represented … Read more