Array Fun allows you to do the following operations on an array: Read file; print array; print stats (average, range, mode, median); add to the file (multiple nums); delete from file (one num); sorting (bubble sort / replacement sort / insertion sort / quick sort); find a number using binary search. Read the rest of this entry »
This code sorts an array using recursion. Read the rest of this entry »
This pretty simple, where message and message2 are in the main function you can enter a c string and the function StringLength will tell you how many characters are in the string. Read the rest of this entry »
Records a number using a pointer. Read the rest of this entry »
This code shows how to use pointers in a c simple example that adds people to the text file , deletes them or retrieves them. Read the rest of this entry »
Master String is a collection of functions, and classes that will aid you in very explicit string manipulation.
This package contains a sort header file with four types of sorts: bubble, insertion, quick and selection. The header also uses templates so that you can implement the sor Read the rest of this entry »
This program accepts a string and outputs it with only the first occurence of each character. So, for example, if you enter the sentence: "the cat was black", the pro Read the rest of this entry »
This code uses a strcat() clone function, concatenates two char arrays and automatically delimits both strings with a space. If you do not like the strcat() func Read the rest of this entry »
Octod is a download manager daemon — a daemon that listens at the network interface for incoming download jobs and performs them (simultaneously) in the background. It is inte Read the rest of this entry »