blog.gekkowrld.meWhile loops in CEver wanted to repeat a block of code in C and wondered how? Then a while loop is your friend. There are many types of loops in C e.g for loop recursion and even just writing your code as many times as you please :) While loop syntax A while loop use...Dec 9, 2023·2 min read
blog.gekkowrld.meFunctions in CWhat is a function A function can be defined as a unit of related lines of code. These lines are supposed to do a particular task. Functions are a major part of programming. In our case, we'll be talking about functions in the C programming labguage....Nov 4, 2023·4 min read
blog.gekkowrld.meHow to use Pipes "|" in GNU/Linux (and programming)"Brief History of pipe in Unix The pipe was introduced around the year 1973. It was used to glue together small commands so as to produce an efficient command to do a task. Instead of creating a monolithic command that was only good in one task, you g...Apr 3, 2023·3 min read