问一个算法问题
怎么计算结构体数组中的素个数? 例如下面的 #include "stdio.h" main() {
struct notebook; { int no[20]; char title[40]; char file1[20]; int year; int month; int day;
} ; struct notebook kind[0]={1,"夺在","a.txt,b.txt,c.txt",2004,12,9}; 统计这里的元素个数 struct notebook kind[1]={1,"地在","a.txt,b.txt,c.txt",2004,12,9}; 统计这里的元素个数