Is it not possible to use memset on an array of integers? I tried the following memset call and didn\'t get the correct integer values in the
memset
gcc provides a good array initialization shortcut
int arr[32] = {[0 ... 10] = 3, [11 ... 31] = 4}
mind the space before and after ...
...