mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 02:47:31 +09:00
7 lines
113 B
C
7 lines
113 B
C
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
int main() {
|
||
|
|
void *p = malloc(1);
|
||
|
|
printf("p: %p\n", p);
|
||
|
|
return 0;
|
||
|
|
}
|