7 lines
79 B
C
7 lines
79 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
int main(void) {
|
||
|
int *p = malloc(64);
|
||
|
(void) p;
|
||
|
}
|