#include <stdio.h> union Example { int n1; double n2; char ch; }E; int main() { E.ch = 'B'; E.n1 = 100; printf("%d", sizeof(E)); }
8
Previous Question Next Question
Your comments will be displayed only after manual approval.