Implement Tower of Hanoi using C language
This C program uses recursive function & solves the tower of hanoi. The tower of hanoi…
Function in C language
A function is a group of statements that together perform a task. Every C program…
Pointer in C language
Pointers in C are easy and fun to learn. Some C programming tasks are performed…
Find Inverse of a matrix: C Program
C program to find the Inverse of a matrix. To find the Matrix Inverse, matrix…
Remove duplicate elements from keyboard: C Program
This C program remove same elements from given list. This program visit each numbers if…
Swap even number with odd number and vice-versa: C Program
swap even odd number C program to swap even position numbers with odd position numbers…
Insert &Delete an element in 1-D array: C Program
C program to insert an element in 1-D array This code will insert an element…
Merge two 1-D array: C Program
Two 1 dimensional array arry1 and arry2 ,which are sorted in ascending order.Write a program…
Binary search: C Program
In computer science, a binary search or half-interval search algorithm finds the position of a specified input…