I have a struct array :
struct Stu* arr = (struct Stu*)calloc(ogr,sizeof(struct Stu));
And I have a void function it gets arr as a paramater and i have to find the len of arr in function.
struct Lsn {
    char lsn_name[50];
}; 
struct Stu {
    char name[40];
    char surname[20];
    char st_id[11];
    struct Lsn* lsn;
};
 
     
    