Date: agosto 25, 2025
Author: Guillermo Garcia
Categories: Embedded C programming Tags: Embedded C programming
In this article we are going to look at one of the most powerful qualities of the C language, which are pointers. This quality makes the C language ideal for embedded systems. Pointer principle In C, every variable has a type, an address in memory and a value. A pointer is a variable whose value […]
Read full article...Date: agosto 25, 2025
Author: Guillermo Garcia
Categories: Embedded C programming Tags: Embedded C programming
Array in C programming is a data structure, used to store a collection of elements of the same type. Although an array is used to store a collection of data, it is often more useful to think of an array as a collection of variables of the same type. Each of those elements are identified […]
Read full article...Date: agosto 25, 2025
Author: Guillermo Garcia
Categories: Embedded C programming Tags: Embedded C programming
In this article, we will look at the functions that are a fundamental pillar of C language programs for embedded systems. Computer programs Most computer programs are built to solve more complex problems than the ones we have treated so far. To develop a computer program for complex problems, it is good practice to divide […]
Read full article...Date: agosto 25, 2025
Author: Guillermo Garcia
Categories: Embedded C programming Tags: Embedded C programming
In this article we will see the repetitive statements to create loops to create programs in C language for embedded systems. Repetition statements In every programming language there are circumstances were you want to do the same thing many times. For instance you want to print the same words ten times. You could type ten […]
Read full article...