What type of data is holded by variable u int in the following C code?
#include union u_tag{ int ival; float fval; char *sval;} u;
#include union u_tag{ int ival; float fval; char *sval;} u; What type of data is holded by variable u int in the following C code?
#include <stdio.h>union u_tag{ int ival; float fval; char *sval;} u; Correct Answer Will be large enough to hold the largest of the three types;
মোঃ আরিফুল ইসলাম
Feb 20, 2025