有沒有一種方法可以確定下列查找表中的message
元素的數量,還是我需要在結構中明確指定int size
?找出查找表的大小C
typedef struct {
int enable;
char* message[3];
} lookuptable;
lookuptable table[] = {
{1, {"Foo", "Bar", "Baz"}}, // # 3
{1, {"Foo", "Bar"}}, // # 2
{1, {"Foo"}}, // # 1
{1, {"Foo", "Baz"}}, // # 2
};
很高興知道。謝謝(你的)信息! –