Array of Unions
Program:
#include <stdio.h>
#include <string.h>
union id_proof
{
char pan_id[11];
char voter_id[11];
long long int aadhaar_num;
char passport_num[9];
};
int main()
{
union id_proof customers[4];
// assigning values to various members of the ...
kaustubhk.hashnode.dev1 min read