i have a union
union filter_row
{
MAC_Filter MAC;
IP_Filter IP;
TCP_Filter TCP;
UDP_Filter UDP;
ICMP_Filter ICMP;
ARP_Filter ARP;
};
the members of this union is structure....how to mask the members of structures...do i have to intialize them to all 1's initially???