#include <stdio.h> struct M { char c : 2; int n : 2; }; int main() { struct M m; m.c = 2; m.n = 1; m.c = m.c & m.n; printf("%d\n", m.c); }
0
Previous Question Next Question
Your comments will be displayed only after manual approval.