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