我有一个数组char*
#define SEASRCH_ENGINES_QUEUE_MAX_SIZE 12
static char* searchEnginesNamesQueue[SEASRCH_ENGINES_QUEUE_MAX_SIZE];
我想在释放它的内存后取消它:
searchEnginesNamesQueue = NULL;
但我收到此错误:
incompatible types when assigning to type 'char *[12]' from type 'int'