typedef in C
To give a new name to a type
A normal convention of declaring a struct:
struct Node
{
int data;
struct Node* next;
};
struct Node* newNode = NULL;
void AddToEnd(struct Node **ppList, int value);
int Count(struct Node *list);
with typedef (N...
yipcode.hashnode.dev1 min read