Computer Science, asked by ganeshajith980, 1 year ago

#include

struct module1{
unsigned int x:5;
unsigned int y:8;

}m1;
struct module2{

unsigned int x:5;
unsigned int:0;
unsigned int y:8;
}m2;
int main(){
printf("%d %d\n",m1.x++-++m2.x,m1.y+m2.y++);

return 0;
}

Answers

Answered by axissmanoj
0

Answer:

Explanation:

Don't know the answer sorry

Similar questions