Which member of the union will be active after REF LINE in the following C code?
#include union temp{ int a; float b; char c;};union temp s = {1,2.5,’A’}; //REF LINE
#include union temp{ int a; float b; char c;};union temp s = {1,2.5,’A’}; //REF LINE Which member of the union will be active after REF LINE in the following C code?
#include <stdio.h>union temp{ int a; float b; char c;};union temp s = {1,2.5,’A’}; //REF LINE Correct Answer a
মোঃ আরিফুল ইসলাম
Feb 20, 2025