The term Zombie, makes it hard for use to think of Zombie Processes in Linux as anything other than a bad thing. The reality is quite different though, have hard it is to believe. Zombie…
Every C program that is to be executable will require a function called main but others functions can be created. C functions encapsulate code, allowing the code to be run and maintained as its own…
Adding Color to Your Programs Adding color to the output of your programs can make them more visually appealing and adding to their aesthetics. Not only this, though, using color will make notices or warning…
Writing C While Loops In the last blog we did use a C while loop to help us iterate though the supplied arguments, as a result we can then check what code we need to…
Using getop in C to Read Arguments Having seen our hello world program in a number of forms so far such as the simple hello and then using if we will now extend this further.…
Conditional Statements in C Using conditional statements in C, such as the if statement above, we can easily create more flexible code. Having already created the hello.c code before that takes arguments to display information.…