Select Page

Introduction To C – Part 2

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...

Introduction To C – Part 1

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...

Unix/Linux Server Utility Commands

This article contains a list of commands that are commonly used when manipulating files on a Unix/Linux operating system. Why A List? Like most of you, I am most familiar with the Windows operating system over Unix/Linux. However, also like the majority, I use a...

Binary Math and Bitwise Operators

So, you have heard the term binary before, but really, what does it mean? How is it useful? And when should it be used in code? These questions are all answered in this article that revolves around the intricacies of binary math. What Does It Mean? Binary is just one...