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