C Programs ...
Here are a list of C programs which will we useful for students in their 2nd year Engg Course... You will require Turbo C to run the programs... it can be downloaded at www.borland.com ...
Sorting Numbers
Bubble Sort | Program to sort numbers using the bubble sort algorithm |
Selection Sort | Program to sort numbers using the selection sort algorithm |
Insertion Sort | Program to sort numbers using the insertion sort algorithm |
Bucket Sort | Program to sort numbers using the bucket sort algorithm |
Roots Of An Equation
Bisection | To find root of an equation using the Bisection Method |
Newton Raphsons | To find root of an equation using Newton Raphson's Method |
Falsi Position | To find root of an equation using the Regula Falsi/Falsi Position |
Secant | To find root of an equation using Secant Method |
Binary Search
To search an array using binary search algorithm |
Interpolation
Lagrange | Lagrange's Interpolation can be used to calculate f(x) when difference between two X's is not constant |
Forward Difference Table | Displays Forward Difference Table |
Newton's Forward Difference Table | Displays Forward Difference Table and calculates value of x using Newton's forward difference formula |
Backward Difference Table | Displays Backward Difference Table |
Programs Using Recursion
Fibonacci Series | To find fibonacci series using recursion |
To find factorial of a number using recursion |
Misc
To find all possible permutation and combination |
Other Programs ...
Pong | This is the simplest game ever developed, it was also the first computer game which was made by a couple of research students in the 1960's ... |
Tic Tac Toe (Cross & Nuts) - Game | This is a Tic Tac Toe game, it has two modes - two player and one player against the computer ... it has a graphical interface which is easy to use .. though the computer is'nt to smart and can be beaten easily, I'm still working on it ... |