@EvilSOB
Thank you for this info.
I have tested this workaraound with various data types and obviously its working fine indeed.
I wonder if one could use this without any risks?
BTW, does somebody know if memset can be used on only a part of an array (or other memory area) in lite-C?
I have tried the following:
// presumption: array length: 50, type: int
// initialize second half of array to zero
memset(array + 25, 0, 24 * 4);
// memset(&array[25], 0, 24 * 4); // alternative way
But this does not work. I guess its not possible to receive an address with address operators or in another way in lite-C?