How to find the size of structure in C without using sizeof?
In C language, sizeof() operator is used to calculate the size of structure, variables, pointers or data types, data types could be pre-defined or user-defined. Using the sizeof() operator we can calculate the size of the structure straightforward to pass it as a parameter. But here I am interested in calculating the size of structure […]
How to find the size of structure in C without using sizeof? Read More »