我刚刚遇到了一个奇怪的问题。
此代码有效:
int l = strlen(output); // l = 20 (believe me)
char withoutLeadingZeroes[20] = "";
这不会:
int l = strlen(output); // l = 20 (believe me)
char withoutLeadingZeroes[l] = "";
我收到此错误
数组初始值设定项必须是初始值设定项列表或字符串文字
我真的不明白。有什么建议么?来自维也纳的问候:-)