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