#include <stdio.h> struct N { unsigned int x : 1; unsigned int y : 1; }; int main() { struct N n; n.x = 10; n.y = 20; printf("%d\n", n.y); }
0
Previous Question Next Question
Your comments will be displayed only after manual approval.