If a number remains same, even if we reverse its digits then the number is known as palindrome number. For example 12321 is a palindrome… [Read More]
C Program to check if number is even or odd
If a number is exactly divisible by 2 then its an even number else it is an odd number. In this article we have shared… [Read More]
Quicksort program in C
Quicksort is a divide and conquer algorithm. The steps are: 1) Pick an element from the array, this element is called as pivot element. 2)… [Read More]
Insertion Sort Program in C
Insertion sort algorithm picks elements one by one and places it to the right position where it belongs in the sorted list of elements. In… [Read More]
Selection Sort Program in C
In Selection sort, the smallest element is exchanged with the first element of the unsorted list of elements (the exchanged element takes the place where… [Read More]
C Program to concatenate two strings without using strcat
In the following program user would be asked to enter two strings and then the program would concatenate them. For concatenation we have not used… [Read More]
C Program to Sort set of strings in alphabetical order
In the following program user would be asked to enter a set of Strings and the program would sort and display them in ascending alphabetical… [Read More]
C Program to convert lowercase string to uppercase string
In the following program, user would be asked to enter a lower case String and the program would convert it into a Upper case String…. [Read More]
C Program to convert uppercase string to lowercase string
In the following C program, user would be asked to enter a String (it can be in complete uppercase or partial uppercase) and then the… [Read More]
C Program for bubble sorting
Bubble sort is also known as sinking sort. This algorithm compares each pair of adjacent items and swaps them if they are in the wrong… [Read More]
- « Previous Page
- 1
- …
- 6
- 7
- 8
- 9
- 10
- Next Page »