标签: c
如果我具有以下条件:
TimerManager::cancel
是否可以仅打印char * test(int i){ size_t ALLOC_SIZE = 100000000L; char * mem = malloc(ALLOC_SIZE); memset(mem, i+60, ALLOC_SIZE); printf("%s", mem); } 的前X个字符?例如,我只是想看看它是如何开始的(否则它会给我一个太大的错误)
char * test(int i){ size_t ALLOC_SIZE = 100000000L; char * mem = malloc(ALLOC_SIZE); memset(mem, i+60, ALLOC_SIZE); printf("%s", mem); }