mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 09:57:32 +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;
|
|
}
|