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