《C专家编程》笔记(三)---相邻的字符串自动合并

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int MB=0;
    while(malloc(1<<20))
        ++MB;
    printf("Allocated %d MB "      "total."     "\n", MB);

    return 0;
}

你可能感兴趣的:(《C专家编程》笔记(三)---相邻的字符串自动合并)