Showing posts from April, 2013

Summary - structure

C language also provides the flexibility to create new types, known as user-defined type…

Enumerations

In C language,   enumerations   provide another way to create user-defined types. An enumerat…

Union

Just like structures, unions are used to create user-defined types. A  union  is a collection…

typedef and Structures

We have seen that a structure object can be declared by using the keyword   struct   followed…

Load More
That is All