How does the compiler fill values in char array[100] = {0}; ? ... (online draft of C spec): for the elements that don't have a specified value, the compiler ... ... <看更多>
I have an array that I want to 0-initialize. I know memset works on Arduino, but I'm used to this way from my desktop C++ programming practice: ... <看更多>