#include <stdio.h> struct Stru { unsigned int ch : 2; unsigned int n : 2; }; int main() { struct Stru s; s.ch = 3; s.n = 1; printf("%d\n", sizeof(s)); }
4
Previous Question Next Question
Your comments will be displayed only after manual approval.