#include <stdio.h> union { int n; char ch; }U; int main() { U.n = 10; printf("%d\n", sizeof(U)); }
sizeof(int)
Previous Question Next Question
Your comments will be displayed only after manual approval.