Date: agosto 25, 2025
Author: Guillermo Garcia
Categories: Embedded C programming Tags: Embedded C programming
In this article, we’ll explore structures and unions, one of the most efficient ways to manage variables of different types as organized data in embedded system programs. Defining a structure In the articule Array in C programming the concept of arrays was introduced. These arrays are used to combine different variables into 1. Unfortunately, all […]
Read full article...Date: agosto 25, 2025
Author: Guillermo Garcia
Categories: Embedded C programming Tags: Embedded C programming
In this article, we will see how to use Function pointers. This feature is widely used in state machines used in programs for embedded systems. Function pointers Like variables, functions need to be stored in memory. Therefore, also functions have a starting address. In C, it is possible to declare a pointer that points to […]
Read full article...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...