📄 ch07s024.c
字号:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(void)
{
clock_t start, end;
unsigned long count = 0;
start = clock();
while(malloc(1024))
{
++count;
if(count % 16 == 0)
{
end = clock();
printf("%7f CPU seconds: %d kilobytes allocated\n",
(double)(end - start) / CLOCKS_PER_SEC,
count);
}
}
printf("Out of memory (no more kilobytes).\n");
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -