Finished format-string/notepad

This commit is contained in:
2021-09-19 17:33:26 +08:00
parent 05b21f5302
commit 0deb3b5025
4 changed files with 120 additions and 0 deletions

View 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;
}