20-03-2015, 01:23 AM
Would the following examples be compliant with rule #9.3?
Code:
char_t a[5] = { '\0' };
Code:
uint16_t a[3][2] = {0u};
Code:
static uint16_t glob_arr[3] = {0u};
Code:
float32_t a[3][2] = {0.0f};
<t></t>