Finished format-string/notepad
This commit is contained in:
9
format-string/notepad/testMalloc.c
Normal file
9
format-string/notepad/testMalloc.c
Normal file
@@ -0,0 +1,9 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
int main(){
|
||||
for(int i=0; i<10; i++){
|
||||
void *p = malloc(0x20);
|
||||
printf("%p\n", p);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user