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