Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,026 questions

51,982 answers

573 users

How to get the size in bytes of a member of a struct in C

3 Answers

0 votes
#include <stdio.h> 

struct employee
{
    int id;
    char name[32];
};

  
int main(void)
{   
    size_t size_in_byte = sizeof(((struct employee *) 0)->id);
    printf("%zu\n", size_in_byte);
    
    size_in_byte = sizeof(((struct employee *) 0)->name);
    printf("%zu\n", size_in_byte);
    
    return 0;
}


        
/*
run:
     
4
32
    
*/

 



answered Jul 3, 2024 by avibootz
0 votes
#include <stdio.h> 

typedef struct 
{
    int id;
    char name[32];
} employee;

  
int main(void)
{   
    size_t size_in_byte = sizeof(((employee *) 0)->id);
    printf("%zu\n", size_in_byte);
    
    size_in_byte = sizeof(((employee *) 0)->name);
    printf("%zu\n", size_in_byte);
    
    return 0;
}


        
/*
run:
     
4
32
    
*/

 



answered Jul 3, 2024 by avibootz
0 votes
#include <stdio.h> 
 
typedef struct
{
    int id;
    char name[32];
} employee;
 
   
int main(void)
{   
    employee e;
    
    size_t size_in_byte = sizeof(e.id);
    printf("%zu\n", size_in_byte);
     
    size_in_byte = sizeof(e.name);
    printf("%zu\n", size_in_byte);
     
    return 0;
}
 
 
         
/*
run:
      
4
32
     
*/

 



answered Jul 3, 2024 by avibootz

Related questions

2 answers 100 views
1 answer 127 views
2 answers 144 views
144 views asked Apr 28, 2022 by avibootz
1 answer 218 views
1 answer 184 views
184 views asked Dec 26, 2020 by avibootz
...