Computer Science, asked by harshit3618, 9 months ago

what is the size of a C structure in c programming​

Answers

Answered by molparu000
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