代码搜索:malloc

找到约 10,000 项符合「malloc」的源代码

代码结果 10,000
www.eeworm.com/read/431675/8662357

c qld.c

/* * QLD.C * * A Matlab MEX interface to Prof. K. Schittkowski's (Univ. of Bayreuth, * Germany) and Prof. M.J.D. Powell's (Univ. of Cambridge, UK) FORTRAN QLD * routine, kindly provided by Prof
www.eeworm.com/read/287849/8664486

cpp arq.cpp

// pingtai.cpp : Defines the entry point for the console application. // //#include "stdafx.h" //#include"head_punc.h" #include #include #include #include
www.eeworm.com/read/431398/8678868

c sponge.c

/* * Copyright (c) 2001-2005 Falk Feddersen * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the F
www.eeworm.com/read/431298/8689987

c 049.c

#include #define PROG "./vul" #define HEAP_LEN 128 int main(int argc, char **argv) { char **env; char **arg; char heap_buf[150]; char eggshell[]= /* Mudge's */
www.eeworm.com/read/287060/8728565

c 单链表2.c

#include #include struct node{ int key; struct node *next; }; void creat_link(struct node *); main() { struct node *head=NULL; creat_li
www.eeworm.com/read/286953/8735906

c fillheap.c

#include #include void main(void) { char *buffer1, *buffer2, *buffer3; int i, state; buffer1 = malloc(100); buffer2 = malloc(200); buffer3 = malloc(300)
www.eeworm.com/read/386485/8740775

c jmemnobs.c

/* * jmemnobs.c * * Copyright (C) 1992-1996, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README fi
www.eeworm.com/read/386452/8746701

cpp cymigong.cpp

#include #include #include #define maxsize 100 #define NULL 0 typedef struct { int array[maxsize][maxsize]; int max_x,max_y; }sd; typedef struct poi
www.eeworm.com/read/385939/8775849

cpp rrr.cpp

#include #include #include #include typedef struct node { float coef; int expn; struct node * next;
www.eeworm.com/read/385938/8775860

cpp qqq.cpp

#include #include #include #include typedef struct node { int coef; int expn; struct node * next;