#include <stdio.h> union test { int n; float fl; char ch; }; union test t = {11,12.25,’N’}; //REF LINE
n
Previous Question Next Question
Your comments will be displayed only after manual approval.