Free
|
|
|
C Language Tutorial with Free C Programs |
|
Structures & Unions in C : - C Programming TutorialA structure is a collection of variables under a single name where variables can be of different types. Example : typedef struct
{ char hobb[128]; } person; We can pass structures as arguments to functions. We can also make structure within a structure.
struct
date Unions in C Unions like structure contain members whose individual data types can be different from one another.
union
person © COPYRIGHT 2009 ALL RIGHTS RESERVED FREECPROGRAMS.COM |
|