Contact: aviboots(AT)netvision.net.il
40,866 questions
53,271 answers
573 users
#include <stdio.h> struct Test { float book_price; int book_tax; char first_letter; char store_name[10]; }; int main() { printf("%i bytes", sizeof(struct Test)); return 0; } /* run: 20 bytes */
#include <stdio.h> struct Test { int n; char arr[26]; float f; }; int main() { printf("%i bytes", sizeof(struct Test)); return 0; } /* run: 36 bytes */