While Loop
2002-01-05 19:10:38
View Code
Category: c:general
Description: Example of a while loop
Author: mind

 Printing
2002-01-05 19:09:08
View Code
Category: c:general
Description: Example of printing text to the screen
Author: mind

 For Loop
2002-01-05 19:07:03
View Code
Category: c:general
Description: Example of a for(;;) loop
Author: mind

 If Operators
2002-02-18 01:50:28
View Code
Category: c:general
Description: This is a short simple example on using if() and operators together.
Author: mind

 Variable Argument List Example
2003-01-27 23:29:38
View Code
Category: c:general
Description: Somewhat simple example on creating your own print and how to use va_list, va_arg, etc.. Using these functions, you can do more than just create your own print, You can use this example to create your function using strings, integers, long integers, etc.. Enjoy.
Author: mind

 POSIX Thread Example
2003-05-28 12:52:38
View Code
Category: c:general
Description: Create multiple POSIX thread processes and wait for each one to complete.
Author: detour

 Bi-directional Sweep Sort
2004-06-07 21:05:13
View Code
Category: c:general
Description: Based on the sort algorithm in bubblesort.c which is as simple as it gets in the sorting business. Added basic improvements to make a bi-directional sweep sort. Added check to short-circuit sort operation as soon as the program detects that the array is sorted. Limit sweeping of values to the unsorted middle of the array. Also added some debugging messages so one can follow the progress of a sort.
Author: mwberryman