#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
0
Answer:
Explanation:
Don't know the answer sorry
Similar questions
Social Sciences,
6 months ago
Social Sciences,
6 months ago
Math,
1 year ago
Social Sciences,
1 year ago