Student Structure Program in C

Student Structure Program in C

Here you will learn to create a Student Structure Program in C programming. We will be using here structure in C language.

 

What is a structure in C

A structure is a user-defined data type that stores data in multiple variables of different data types. It is used to store related data and, It can be accessed using a single variable name.

Structure are used to represent a record, and each element in the structure is called a member.

 

Student Structure Program in C  Example

Output

Enter Roll No : 101
Enter Name : Amit
Enter Age : 16

Print data Record……

Roll: 101
Name: Amit
Age: 16

 

 

Check out our other C programming Examples

 

 

 

 

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top