Code:
#include <stdio.h>

struct DbNames {
   char Names[5];
};

int main() {
   struct DbNames List[] = { {"A"}, {"B"}, {"C"} };
}
I created 3 records in this Struct. How can I tell how many records she has? How to identify that she has 3 records?