⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 funtc75b.dat

📁 指令字典2005里面可以方便的查找一些函数
💻 DAT
字号:
malloc

#include <stdio.h>
#include <string.h>
#include <alloc.h>
#include <process.h>
int main(void)
{
    char *str;
    if ((str = malloc(10)) == NULL)
    {
        printf("Not enough memory to allocate buffer");
        exit(1);
    }
    strcpy(str, "Hello");
    printf("String is %s", str);
    free(str);
    return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -