#include <stdio.h> struct Stru { unsigned int x : 7; unsigned int y : 2; }; int main() { struct Stru s; s.x = 110; s.y = 2; printf("%d\n", s.x); }
None of these
Previous Question Next Question
Your comments will be displayed only after manual approval.