C Programming Language MCQ Union in C Language
⚠ Report ✓ Question Verified Copy Link
union temp s = {1,2.5,'A'}; //REF LINE Which member of the union will be active after REF LINE?#include union temp { int a; float b; char c; };
Learn More MCQ Questions from C Programming Language MCQ Union in C Language