C Program to find whether the given character is Vowel or Consonant

C Program to find whether the given character is Vowel or Consonant. Here, we use the simple if-else statement to check the particular character is Vowel or Consonant. Read more about C Programming Language .  [gist id=”7112441″ ] Read more Similar C Programs C Strings Data Structures C Sorting You can easily select the code …

C Program for simple calculator, using switch statement

C program to simulate a simple calculator using switch statement.  The calculator should be able to perform basic arithmetic operations like addition, subtraction, multiplication, and division only on integers. Error message should be reported, if any attempt is made to divide by zero. (Using switch statement) . Read more about C Programming Language . [gist …

C Program to Sort an Array Using Bubble Sort — With Optimisation and Complexity

Bubble Sort is the simplest sorting algorithm to understand and implement. It works by repeatedly comparing adjacent elements and swapping them if they are in the wrong order. After each pass, the largest unsorted element has “bubbled up” to its correct position at the end — just like air bubbles rising to the surface of …

Binary search in C

C Program to implement Binary search. Binary search technique is simple searching technique which can be applied if the items to be compared are either in ascending order or descending order. The general idea used in binary search is similar to the way we search for the telephone number of a person in the telephone …

C Program to convert a given decimal number into its binary equivalent

This C program converts a given decimal number into its binary equivalent. A decimal number uses base 10 (digits 0–9), while a binary number uses base 2 (only 0 and 1) — the language computers actually work in. Converting between them is one of the first things every programmer learns. In this tutorial we walk …

C Program To Find The Largest Of 3 Numbers

C Program To Find The Biggest(Largest) Of 3 Numbers. In this program, We find the biggest of three number using simple else-if ladder. Read more about C Programming Language .  [gist id=”7019035″ show_line_numbers=”1″ highlight=”26-32″] Read more Similar C Programs Array In C Number System Simple C Programs You can easily select the code by double …