Structure and Union
2020-05-14
Structure Definition:- A Group of data items of different data types stored in continuous memory locations is known as a Structure. struct:- It is a keyword which is used to declare a structure. Declaration of structure: Form 1:- struct struct_name { data item-1; data item-2; ———— ———— data item-n; };Continue Reading