C has a user defined datatype and Structure is one of them. Syntax for creating a structure: struct { datatype variable_1; datatype variable_2; }; The points to remember about structure are: 1.A structure is used in data structures for creation of no...