Probably a dumb question, but I'm just curious. What do the variables *temp and *perm mean in this structure?
struct process {
int id;
char name;
} *temp, *perm;
Short version of
struct process {
int id;
char name;
};
process *temp;
process *perm;
This declares a struct type named process and then declares two variables which are pointers to process structs.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With