Path: utzoo!utgpu!attcan!uunet!ncrlnk!ncrpcd!wright!cs78404 From: cs78404@wright.EDU (Student of Dr. Sanders) Newsgroups: comp.lang.c Subject: Re: Unions Message-ID: <901@wright.EDU> Date: 21 Oct 88 17:29:25 GMT References: <322@hrc.UUCP> Organization: Wright State University, Dayton OH, 45435 Lines: 9 in article <322@hrc.UUCP>, dan@hrc.UUCP (Dan Troxel VP) says: > > > Except for the memory savings, what are Unions suited for? > Unions are used to logically group related data structures. For example, if you have twelve structs with a queue in each, you can group all of the queues together logically with a union statement.