#include <stdio.h> union Employee { int N; float F; }; void main() { union Employee emp; emp.N = 26; printf("%d", emp.N); }
26
Previous Question Next Question
Your comments will be displayed only after manual approval.