9 lines
102 B
C
9 lines
102 B
C
#include <stdlib.h>
|
|
|
|
int main() {
|
|
int* ptr = malloc(sizeof(int));
|
|
|
|
*ptr = 4;
|
|
|
|
free(ptr);
|
|
} |