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