C
C Program to Check Leap Year
In this example, you will learn to find a given year is a leap year or not. We all know ...
C Program to Find the Largest Number Among Three Numbers
In this example, you will learn to find the largest number among the three numbers. In example 1 we will ...
C Program to Check a Character is a Vowel or Consonant
In this example, you will learn to check a given character is vowel or consonant. We all know there are ...
C Program to find Quotient and Remainder
In this example, you will learn how to find Quotient and Remainder by taking dividend and divisor input from the ...
C Program to Swap Two Numbers
In this example, you will learn how to swap two numbers with two different methods. Method 1: Swap Two Numbers ...
C Program to Find ASCII Value of a Character
In this example, you will learn how to find an ASCII value of a character. ASCII stands for American Standard ...
C Program to find the size of a variable
In this example, you will learn how to find the size of a variable and display the results. You can ...
C Program to Multiply two floating-point numbers
In this example, you will learn how to multiply two floating-point numbers by taking input from the user and display ...
C Program to Add Two Integers
In this example, you will learn to add two integers by taking input from the user and display the results ...
C library function – qsort()
The qsort() function in C is available in stdlib.h library. As the name indicates, qsort() function internally uses quick sort ...