[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 malloc(3) - ðòéíåòù
int *pi;

pi = malloc(sizeof(int));

_____________________________________

struct node {
        int data;
        struct node *next;
};
struct node *pnode;

pnode = malloc(sizeof(struct node));