搜索:realloc
找到约 3 项符合「realloc」的查询结果
结果 3
按分类筛选
https://www.eeworm.com/dl/655/463259.html
微处理器开发
This project contains code for testin realloc api tested in fre rtos ported to AT91SAM7x256.the code
This project contains code for testin realloc api tested in fre rtos ported to AT91SAM7x256.the code is compiled using IAR embedded work bench for ARM
https://www.eeworm.com/dl/534/339039.html
其他
一些基本函数的程序源代码:包括(1)malloc函数(2)free函数(3)realloc函数(4)calloc函数 (5)学生数据库的编写(6)通讯录 以上都包含c语言源码
一些基本函数的程序源代码:包括(1)malloc函数(2)free函数(3)realloc函数(4)calloc函数 (5)学生数据库的编写(6)通讯录 以上都包含c语言源码,obj文件及应用程序
https://www.eeworm.com/dl/513582.html
源码
利用栈的基本操作实现将任意一个十进制整数N转化为R进制整数。
#include <stdlib.h>
#include<stdio.h>
#include <malloc.h>
#define stack_init_size 100
#define stackincrement 10
typedef struct sqstack
{
int *base;
int *top;
int stacksize;
} sqstack;
int StackInit(sqstack *s)
{
s->base=(int *)malloc(stack_init_size *sizeof(int));
if(!s->base)
re ...