Popular C Codes
Description C Language: This is a sample code to implement the Shortest Job First Algorithm, Operating System Source Code #include<conio.h> void main() { int n,i,j,a[10],b[10],temp; float sum,avg_w ...

Description This a simple code show how to make Hello World application in C with and without using pointers. Source Code /* Simple Version......... */ #include int main() { printf( ...

Description Program of insertion and deletion in B tree...In data structures, a B-tree is a tree data structure that keeps data sorted and allows searches, insertions, and deletions in logarithmic amortized time. Unlike self-balancing binary se ...

Description THIS CODE IS SIMPLE BUT NOT EASY TO WRITE SO PLEASE BEFORE RUNNING THE PROGRAM SEE THE CODE AND THEN RUN IF YOU DO'NT UNDERSTAND THEN SUMMIT QUERRY IN email address dwarikachandra@gmail.com Source Code <pre name="code" cl ...

Description It is a program for conversion of Number System viz. Binary to Decimal,Decimal to Binary,Decimal to Octal, Decimal to Hexadecimal,Octal to Decimal,Octal to Binary,Binary to Octal,Binary to Hexadecimal, Hexadecimal to Binary, Hexadec ...

Description Program for insertion in AVL tree...n Data Structure, an AVL tree is a self-balancing binary search tree, and it is the first such data structure to be invented. In an AVL tree, the heights of the two child subtrees of any node diff ...

Description it is method to find root as an example equation x^3-2x-5 is taken Source Code #include<stdio.h> #include<conio.h> #include<math.h> float f(float x); void main() ...

Description The insertion sort works just like its name suggests - it inserts each item into its proper place in the final list. The simplest implementation of this requires two list structures - the source list and the list into which sorted i ...

Description operating system Source Code #include<conio.h> void main() { int a[10],i,j,n; float sum,avg_wait,avg_tat,k; clrscr(); printf("\nEnter the no of processes="); scanf("%d ...

Description This program Encrypts the given Text and Substitutes its Letters by some other ones. Source Code /* rot13 algorithm. Very Simple and Interesting */ #include<stdio.h> #define ROT 13 ...









