这是简单的示例程序
#include <stdio.h>
#include <string.h>
const char *hello_string = "Hello";
int main(void)
{
char *world_string = " World";
static char hello_world[strlen(hello_string)+strlen(world_string)];
strcpy(&hello_world[0], hello_string);
strcat(&hello_world[0], world_string);
printf("%s\n", hello_world);
return 0;
}
编译器输出:
test.c: In function ‘main’:
test.c:9:13: error: storage size of ‘hello_world’ isn’t constant
static char hello_world[strlen(hello_string)+strlen(world_string)];
^
我意识到在这种情况下完全无用和不必要的“静态”使用会导致错误,并且删除它会编译得很好。这只是一个简单的例子来说明我的问题。
我不明白的是,为什么当“hello_string”被声明为const char * 并且它的大小在执行过程中不会改变时,存储大小不是一个常数。这只是编译器不够聪明而无法知道的情况吗?