- 704 名前:デフォルトの名無しさん mailto:sage [2008/03/13(木) 00:43:28 ]
- Windowsのdmcも、即OSに返還されないね。orz
#include <stdlib.h> #include <stdio.h> #include <string.h> void main(){ printf("malloc"); void* p = malloc(104857600); memset( p, 0, 104857600 ); printf(" ok\n"); getch(); printf("free"); free(p); printf(" ok\n"); getch(); }
|

|