Monthly Archive: December 2014
This is the C Program implementation of binary search tree with ->Insertion ->Deletion ->Traversal ->Display In computer science, a binary search tree (BST), sometimes also called an ordered or sorted binary tree, is a...
This is the C Program to sort an array using quicksort,it uses divide and conquer mechanism to sort the array Visualization of the quicksort algorithm. The horizontal lines are pivot values. Class Sorting algorithm...
This is the c program to validate input using string functions,it checks whether username and password matches and if yes it provides access else not
This is the C program to print multiplication table upto 10,change it in the program to extend it /*———- PROGRAM TO PRINT MULTIPLICATION TABLE ——–*/ #include #define ROWS 5 #define COLUMNS 5 void main()...
This is the c program to check whether the entered letter is a vowel or not using switch case
This is the C program to find the square root of a number using predefined function,use -lm (linking math) for compiling eg: cc prog.c -lm
This is the C program to check whether a given year is leap year or not.the second program generates leap year within the limit specified Leap Year Generation: #include main() { int i; for(i=1990;i
This is the Implementation of Floyd’s triangle in C,Enter the Number of Lines it will print the Triangle with Number #include main() { int num=1; int i,j,n; printf(“Enter the Number of Rowsn”); scanf(“%d”,&n); for...
This is the C Program which Implements Fibonacci series upto user defined limit n #include int main() { int n; //Variable to store no of terms int first=0; //First term initializing with zero as...
This is the implementation of factorial program in c,using recursion and loops USING FOR LOOP: USING WHILE LOOP:
Recent Comments