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
It depends on the STRUCTA. For example :
typedef struct structa { int a, b; } STRUCTA; int main (int argc, char const* argv[]) { STRUCTA array[10] = {{0,0}}; return 0; }