C++
Binary Search
Binary search is a searching algorithm, it applies to finding an element in a sorted array. In the binary search, ...
Linear Search
Linear Search is a simple sequential search algorithm. In Linear Search, we will traverse the array or list sequentially until ...
C Program to find Sum of Digits in a Number
In this example, you will learn to find the sum of digits in a given number using C Programming. For ...
C program to Check for a Perfect Square
In this example, you will learn to check a given number is a perfect square or not using the c ...
C Program to Count Number of Digits in an Integer
In this example, you will learn to count the number of digits present in the given integer. C Program to ...
C Program to Display Alphabets
In this example, you will learn to display alphabets sequentially using loops and ASCII values. You can find more about ...
C Program to Find GCD of Two Numbers
In this example, you will learn to find the GCD or HCF of two given numbers. GCD is known as ...
C Program to find LCM of two numbers
In this example, you will learn to find the LCM of two numbers using a c program. LCM is also ...
C Program to Find Factorial of a Number
Factorial program in C: In this article, you will explore how to find the factorial of a given number in ...
C Program to Display Fibonacci Sequence
In this article, you will learn to generate the Fibonacci sequence of n terms in multiple ways. Below are the ...