BeginnersBook

  • Home
  • Java
    • Java OOPs
    • Java Collections
    • Java Examples
  • C
    • C Examples
  • C++
    • C++ Examples
  • DBMS
  • Computer Network
  • Python
    • Python Examples
  • More…
    • jQuery
    • Kotlin
    • WordPress
    • SEO
    • JSON
    • JSP
    • JSTL
    • Servlet
    • MongoDB
    • XML
    • Perl

C Program to check if a number is palindrome or not

Last Updated: February 11, 2015 by Chaitanya Singh | Filed Under: C Programs

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

Last Updated: February 11, 2015 by Chaitanya Singh | Filed Under: C Programs

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

Last Updated: February 11, 2015 by Chaitanya Singh | Filed Under: C Programs

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

Last Updated: December 1, 2024 by Chaitanya Singh | Filed Under: C Programs

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

Last Updated: February 11, 2015 by Chaitanya Singh | Filed Under: C Programs

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

Last Updated: February 10, 2015 by Chaitanya Singh | Filed Under: C Programs

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

Last Updated: February 10, 2015 by Chaitanya Singh | Filed Under: C Programs

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

Last Updated: February 10, 2015 by Chaitanya Singh | Filed Under: C Programs

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

Last Updated: February 10, 2015 by Chaitanya Singh | Filed Under: C Programs

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

Last Updated: February 10, 2015 by Chaitanya Singh | Filed Under: C Programs

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 »

Copyright © 2012 – 2026 BeginnersBook . Privacy Policy . Sitemap