Category: Uncategorized

  • The FUNDAMENTAL way to debug your code

    No one can write perfect code. There are always bugs! Especially as systems become more and more complex, the likelihood of bugs increases. There are also bugs and coding mistakes as we develop new features and functionality for our programs. This is all part of the process. When we can’t figure out why our code…

    Read More

  • C tutorial: How to read file data into your program

    One of the coolest things you can do through programming is to process data from a file. Once you know how to do this, you can get data from the internet or from other programs and write a program that processes that data for you. For example, in my programming guide, you will need to…

    Read More

  • C tutorial: How to store different types of data in a program

    In essence, all that a program does is take in data, process it, and give it to you in a processed format that you want. For example, YouTube takes in video data from one person and makes it available to many people. Video editing programs take raw video data and allows editors to edit the…

    Read More