Visual Studio Code – How can I use a Pointer to structure in C?
I have problem with pointer to structure in C. This is my code : #include <stdio.h> #define N 10 // determine the number of students typedef struct { char* firstname; char* lastname; unsigned int id; unsigned int gpa; } STU;…