John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Tags: Links: C Variables


C Struct

Syntax

Struct student_info with typedef student

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
struct student_info {  
 char* first_name;  
 char* last_name;  
 int ID;  
 int grades[5];  
};
typedef struct student_info student;

OR

typedef struct student_info {  
 char* first_name;  
 char* last_name;  
 int ID;  
 int grades[5];  
} student;

Playing around with student_info struct

1
2
3
4
5
struct student_info studentVar; //defining variable
studentVar.first_name = "John";
student list_of_students[180];

list_of_students[10].first_name = "Jack";

Using pointers with struct

1
2
3
4
5
student clark;  
 clark.first_name = "Clark"; 

  student* student_ptr = &clark;  
 (*student_ptr).last_name = "Kent"; // accessing a field in struct student_ptr→id = 123; // accessing a field in pointer to struct

Backlinks

1
list from C Struct AND !outgoing(C Struct)

References:

Created:: 2021-09-22 14:47


Interactive Graph