what is the size of a C structure in c programming
Answers
Answered by
0
Explanation:
As per C concepts, int and float datatypes occupy 4 bytes each and char datatype occupies 1 byte for 32 bit processor. So, only 14 bytes (4+4+1+1+4) should be allocated for above structure.
Similar questions