标签: c arrays c-preprocessor
const int MAX_STRING = 256; int main(void) { char buffer[MAX_STRING]; }
#define MAX_STRING 256; int main(void) { char buffer[MAX_STRING]; }
这些代码的不同行为是什么原因?那些MAX_STRING都不是常量吗?
MAX_STRING