欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

求字符串数组长度的一种方法

程序员文章站 2022-06-09 22:00:52
...
#include <stdio.h>

struct string{
        char *st;
};

struct string test[] = { {"555555555"},{"111111"},{"0000"}};

int main()
{
        printf("%d\n",sizeof(test)/sizeof(struct string));
        return 0;
}

相关标签: 字符串数组长度