static char* theFruit[] = { "lemon","orange","apple","banana" };
我知道这个数组是4.在C中如何以编程方式找到该数组的大小?我不想要字节的大小.
解决方法
sizeof(theFruit) / sizeof(theFruit[0])
注意sizeof(theFruit [0])== sizeof(char *),一个常数.
static char* theFruit[] = { "lemon","orange","apple","banana" };
我知道这个数组是4.在C中如何以编程方式找到该数组的大小?我不想要字节的大小.
sizeof(theFruit) / sizeof(theFruit[0])
注意sizeof(theFruit [0])== sizeof(char *),一个常数.