Structure is user defined data type available in C programming language that allows to combine data items of different kinds.
"struct" keyword is used to create a structure in C programming language.
Structure is user defined data type available in C programming language that allows to combine data items of different kinds. Structures are used to represent a record. for example you want to keep track of student of a school. You might want to track the following attributes about each student −
struct student { int roll; char name[50]; float marks; }
I have used Code::blocks 12 compiler for debugging purpose. But you can use any C programming language compiler as per your
16 August 2019 1693 Written By: Rohit
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap