14 lines
145 B
C
14 lines
145 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
char *p;
|
|
|
|
p = malloc(10);
|
|
free(p);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|