previous | start | next

Size of struct types

What is the size of each of these struct types?

typedef struct {  
  char c1;        
  int n;          
  char c2;        
  double x;       
} s1_t;           
                  

typedef struct {
  double x;     
  int n;        
  char c1;      
  char c2;      
} s2_t;         


previous | start | next