Share
can someone tell me what is structure and it syntax ?
In progress
Programming, C
13 Mar 2025
3 views
Answers ( 1 )
In C programming, a structure (struct) is a user-defined data type that allows grouping variables of different types under one name. It is used to store related data together, similar to a record in databases.
Syntax of Structure in C
Example: