The following line of code, which creates a variable-length array on the stack:
char name[length] = {''};
Generates the following compiler diagnostics:
error: variable-sized object may not be initialized
warning: excess elements in array initializer
warning: (near initialization for ‘name’)
What options are available to me for initializing VLAs? Am I forced to use a line such as:
memset(name, 0, sizeof(name));
Instead?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…