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 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]

C Program to arrange numbers in ascending order

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

The following program prompts user for the n numbers, once the user is done entering those numbers, this program sorts and displays them in ascending… [Read More]

C program to find the length of a String without using function strlen()

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

In the following C program we are counting the number of characters in a given String to find out and display its length on console…. [Read More]

C Program to Convert Binary Number to Decimal Number

Last Updated: September 25, 2017 by Chaitanya Singh | Filed Under: C Programs

This program converts binary number to equivalent decimal number. Example: Program to convert binary to decimal In this program, we have created a user defined… [Read More]

C Program to check whether a given integer is positive or negative

Last Updated: May 22, 2024 by Chaitanya Singh | Filed Under: C Programs

In this article, we will write a C Program to check whether a given integer is positive or negative. For example, if user enters -5… [Read More]

C program to calculate and print the value of nPr

Last Updated: May 22, 2024 by Chaitanya Singh | Filed Under: C Programs

In this article, we will write a C program to calculate and print the value of nPr. The formula is: nPr = n! / (n – r)!,… [Read More]

C program to calculate and print the value of nCr

Last Updated: May 22, 2024 by Chaitanya Singh | Filed Under: C Programs

In this article, we will write a C program to calculate and print the value of nCr. The formula of nCr is: nCr = n!… [Read More]

C Program to find largest element of an Array

Last Updated: May 22, 2024 by Chaitanya Singh | Filed Under: C Programs

In this article, we will write a C program to find the largest element of an array. For example, if an array contains these elements… [Read More]

C Program to display Fibonacci series

Last Updated: May 20, 2024 by Chaitanya Singh | Filed Under: C Programs

In this tutorial, we will learn how to write a C Program to display fibonacci series. The Fibonacci series is a sequence of numbers in… [Read More]

C program to Reverse a String using recursion

Last Updated: May 20, 2024 by Chaitanya Singh | Filed Under: C Programs

In this article, we will write a C program to reverse a string using recursion. A function calling itself with smaller instances is called recursion…. [Read More]

C Program to find prime numbers in a given range

Last Updated: May 20, 2024 by Chaitanya Singh | Filed Under: C Programs

In this article, we will write a C Program to find prime numbers in a given range. For example, if user enters the range from… [Read More]

  • « Previous Page
  • 1
  • …
  • 4
  • 5
  • 6
  • 7
  • Next Page »

Copyright © 2012 – 2025 BeginnersBook . Privacy Policy . Sitemap