|
|
|
|
|
by JoeAltmaier
3827 days ago
|
|
Embedded can be almost anything, C/C++/java and so on. I've seen microcontrollers with 8K of program space, written in C++. Why? Because it optimizes better than the 'C' programmer does. Unions are used for interpreting any kind of record stream. Reading serialized binary objects from a file? Use a union. Network packets? A union. |
|