Structures

Create Pattern, Print Series, Working with Records, Use Numeric Functions, Work with arrays

The objective of this assignment is to develop a menu driven application that will enable the user to use its different features to print various series, work with records and arrays, create patterns, use number functions and exit the application. The application should provide the following options in the main menu, however this menu is further classified into another menus:- • Create Pattern •

Structures in C

Structures in C

In this part you will learn: 1. C syntax 2. Structure variable 3. Structure declaration 4. Structure accessing 5. Showing output

What is a Structure?

Structure is a user-defined data type in C which allows you to combine different data types to store a particular type of record. Structure helps to construct a complex data type in a more meaningful way. Structure helps when you have to store a collection of data of many similar things or people etc. It is somewhat similar to an array.