C Programming Code Examples
C > Sorting Searching Code Examples
Qcksort, quick sort [array]
Code Print Prime Numbers in given Range -
C program print all prime numbers between 1 to n. Input upper & lower limit to print prime. Find Prime numbers between 1 to n. Assume that the current number is Prime and check if
Using Local variable in The C++ Language -
Local variables are declared inside the braces of any "user defined function", main function, loops or control statements(if, if-else etc) and have their scope limited inside those "braces"
C Merges Lines Alternatively From 2 Files -
Program that merges lines alternatively from 2 files & print result. Getting the names of file to be concatenated. Opening the files in read only mode. Opening a new file in write mode.
Coordinated Universal Time in C Language -
C program code returns time in Coordinated Universal Time (UTC) (essentially Greenwich mean time). Printing the local time and date. Printing coordinated Universal Time and date
Implementing Disjoint Set Data Structure -
This C++ program implements the "Disjoint" Set data structure. It is a data structure that keeps track of a set of elements partitioned into a number of disjoint ("nonoverlapping")
C Program Find ASCII value of a Character -
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 X is 88. This program takes the
Reversing Letters in Each Word of a String -
In C program, we are going to accept a string. Program will check for word inside string and if word founds then program will reverse that word. Similarly it'll Reverse out all the Words.
Undirected Graph is Connected Using DFS -
A "Recursive Function" to print 'DFS' starting from v. Returns reverse ('or transpose') of this graph. Add edge to connect v and w. Check if Graph is Connected and display 'The Graph is