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 find the Average of two numbers

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

Here we will write two C programs to find the average of two numbers(entered by user). Example 1: Program to find the average of two… [Read More]

C Program to Find the Number of Elements in an Array

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

Here we will write a C program to find the number of elements in a given array. Example: Program to find the size of an… [Read More]

C Program to Find Quotient and Remainder

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

Program to find quotient and remainder based on the dividend & divisor values entered by user. Example 1: Program to find Quotient and Remainder In… [Read More]

C Program to Find ASCII value of a Character

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

ASCII value represents the English characters as numbers, each letter is assigned a number from 0 to 127. For example, the ASCII value for uppercase… [Read More]

C Program to Multiply two Floating Point Numbers

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

Program to multiply two floating point numbers and display the product as output. Example 1: Program to display the product of two float numbers In… [Read More]

C Program to Add two numbers

Last Updated: July 22, 2022 by Chaitanya Singh | Filed Under: C Programs

In this tutorial, you will learn how to write a C program to add two numbers. This is a very basic C program where user… [Read More]

Hello World Program in C

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

Here we will write two C programs to display Hello World on the screen. In the first program we are displaying the message using printf… [Read More]

C Program to Print an Integer entered by the user

Last Updated: July 22, 2022 by Chaitanya Singh | Filed Under: C Programs

In this tutorial, you will learn how to write a C program to print an integer entered by user. This is a very simple program…. [Read More]

Ultimate Collection of C Programs: Source Code with Outputs

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

Here we are sharing C programs on various topics of C Programming such as array, strings, series, area & volume of geometrical figures, mathematical calculation,… [Read More]

C Program to find Palindrome numbers in a given range

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

In the last tutorial we have learnt how to check if a number is palindrome or not. In this tutorial we will learn how to… [Read More]

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]

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

Copyright © 2012 – 2025 BeginnersBook . Privacy Policy . Sitemap