I\'m trying to initialize an array of structures to all-0\'s, using the below syntax:
STRUCTA array[MAX] = {0};
However, I\'m getting the f
Can STRUCTA be assigned to 0?
You can always use memset(), too.