Posts

Showing posts from April, 2016

Defining a Structure

This blog has been migrated to learn c programming for beginners Defining a Structure Defining a Structure is a process of creating the skeleton of physical object that can be understood by compiler .It consists of Structure name and the description of it’s member(property). Definition of a structure creates a template are format that describes the characteristics of it’s member . The general syntax of a structure definition is: Struct structurename{ Datatype member1; Datatype member2; ………………………………….. Datatype membern; }; Here struct is a keyword , which tells the compiler that a structure is being defined . member1 , member2 ,………,membern are the member of structure and are declared inside curly bracket . There should be a semicolon at the end of the curly braces These member can be of any data type like int , char , float , array , pointer or another structure Structurename is the name