by suleski | Dec 21, 2004 | Reference, Technical
This article contains information regarding various searching techniques that may prove useful in various situations without regard to programming language. Description Of Searching? Ready for a completely convoluted example? Read on… Let’s say that you...
by suleski | Dec 20, 2004 | Reference, Technical
This article contains information regarding various sorting techniques that may prove useful in various situations without regard to programming language. Description Of Sorting? Sorting is a term to describe the ordering of data upon some value. For instance,...
by suleski | Nov 13, 2004 | Technical, Walkthroughs
Welcome to the final installment of a three-part introduction to C. In this chapter, various constructs are discussed including conditional statements and loops. Conditionals If-Statement There are times in a program when you will want to perform actions based on...
by suleski | Nov 9, 2004 | Technical, Walkthroughs
This is part two of a three-part introduction to C series. Please read Part One first if you have not done so already and are new to the language. Variables Variables are a medium with which to hold storage of some value in a program. Variables are implemented in...
by suleski | Oct 21, 2004 | Technical, Walkthroughs
Recently, I have added a programming assignment to my college students’ Game Design & Development courses. I require the assignment as a way to simply introduce them to the C-language; but more for the logical thought process that the ensuing coding...