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.

39,885 questions

51,811 answers

573 users

How to create struct with 8 bit fields in C

1 Answer

0 votes
#include <stdio.h>

struct test {
    unsigned int x1 : 8;
    unsigned int x2 : 8;
    unsigned int x3 : 8;
    unsigned int x4 : 8;
};  

void work() {
  struct test data;
  
  data.x1 = 0;
  data.x2 = 0;
  data.x3 = 0;
  data.x4 = 0;
  
  data.x1++;
  data.x2 += 2;
  data.x3 += 3;
  data.x4 += 4;
  
  printf("%i %i %i %i", data.x1, data.x2, data.x3, data.x4);
}

int main(void) {
    printf("size = %zu\n", sizeof(struct test));
    
    work();
}




/*
run:

size = 4
1 2 3 4

*/

 



answered May 10, 2022 by avibootz

Related questions

1 answer 116 views
1 answer 198 views
198 views asked Aug 28, 2016 by avibootz
1 answer 213 views
213 views asked Aug 28, 2016 by avibootz
2 answers 221 views
221 views asked Jan 5, 2016 by avibootz
1 answer 94 views
1 answer 109 views
...