Michael FelixDec 18, 20181 min readIF CONDITONAn if structure is formed from an if statement and is often used to select a single condition. If the selected process is fulfilled or...
Michael FelixDec 18, 20181 min readPOINTERA pointer is a variable that points to another variable memory address. A pointer does not contain a data value as well as an ordinary...
Michael FelixDec 13, 20181 min readArrayAn array is a collection of data values of the same type in a certain order that uses the same name. According to its dimensions,...
Michael FelixDec 12, 20182 min readRepetitionRepetition, or better known as looping, is the process of repeating statements to be more simple and efficient. For example we want to...
Michael FelixDec 12, 20181 min readHello world!In today's post, I'm gonna show you how to set up your computer to start coding in C! We'll be using Windows Operating System and DevC++...