标签: c
在C中是否有办法知道像这样初始化的数组中有多少个值?
char *string_array[] = {"one", "two", "three"};
显然阵列中有三个字符串但是如何在运行时确定大小?