How to get the size of structs in C

2 Answers

0 votes
#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
 
*/

 



answered May 8, 2019 by avibootz
0 votes
#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
 
*/

 



answered May 8, 2019 by avibootz
...