Next: queue.c Up: Program Listings Previous: static.c

malloc.c


#include <stdlib.h>     /* using ANSI C standard libraries */
#include <malloc.h>

main()
{
    char *string_ptr;

    string_ptr = malloc(80);
}


Dave.Marshall@cm.cf.ac.uk
Fri May 20 13:40:49 BST 1994