Join Regular Classroom : Visit ClassroomTech

Structure in C

What is structure?

A structure is a collection of one or more variables, possibly of different types, grouped together under a single name for convenient handling. Structures help to organize complicated data, particularly in large programs, because they permit a group of related variables to be treated as a unit instead of as separate entities.

How to define a structure?

Structure is a user defined data type, it permits logical grouping of related data (of different types) into a single type. A structure is declared using the keyword struct, and the internal organization of the structure is defined by a set of variables enclosed in braces.

How to initialize a structure?

Output:

Numerator = 10 and Denominator = 14
You Missed
Also Checkout