Structure is a group of variables of different data types represented by a single name . Lets take an example to understand the need of a structure in C programming. Lets say we need to store the data of students like student name, age, address, id etc.1 Kas 2014
Read moreWhat is a structure in C explain?
A struct in the C programming language (and many derivatives) is a composite data type (or record) declaration that defines a physically grouped list of variables under one name in a block of memory, allowing the different variables to be accessed via a single pointer or by the struct declared name which returns the …
Read more