#include <stdio.h> union U { int N; float F; }; int main() { union U u, uu; u.N = 200; printf("%f\n", u.F); }
0.000000
Previous Question Next Question
Your comments will be displayed only after manual approval.