C struct Keyword
Example
Create a structure:
// Create a structure called myStructure
struct myStructure {
int myNum;
char myLetter;
};
int main() {
// Create a
structure variable of myStructure called s1
struct myStructure s1;
// Assign values to members of s1
s1.myNum = 13;
s1.myLetter = 'B';
// Print values
printf("My
number: %d\n", s1.myNum);
printf("My letter: %c\n", s1.myLetter);
return 0;
}
Try it Yourself »
Definition and Usage
The struct
keyword defines a structure. Structures are a way to group several related variables into one place.
Related Pages
Read more about structures in our C Structures Tutorial.