This document is intended to introduce pointers to beginning programmers in the C programming language. Read the rest of this entry »

Each record of a linked list is often called an element or node. The field of each node that contains address of the next node is usually called the next link or next pointer. Read the rest of this entry »

In this How to we summarize the basic syntax of C++ and the rules and operators that are used in C++ expressions. This is a brief language reference for C++ as used in this book, not the entire language. We don’t cover the use of dynamic memory in this How to. Read the rest of this entry »

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.

Read the rest of this entry »

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 »