代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/138258/13244239

c view.c

#include #include void main(int argc,char *argv[]) { FILE *viewfile; char buffer[81]; //storage if(argc
www.eeworm.com/read/138258/13244277

c random.c

/* * Random number routines: rnd and seedrnd */ #include #include //for the seedrnd() function int rnd(int range); void seedrnd(void); /* Generate a random value */
www.eeworm.com/read/239313/13288429

c tcp49com.c

/* tcp49com.c */ #include #include #include char *cmds[]={ "help", "say", "hello", "bye", "exit", NULL };
www.eeworm.com/read/137475/13320699

cpp fvsimage.cpp

// This file contains the implementation for FvsImage class #ifndef __FVSIMAGE_IMPLEMENTATION__ #define __FVSIMAGE_IMPLEMENTATION__ #include #include "fvsimage.h" #include "vector.h" //
www.eeworm.com/read/136959/13351532

c ll_qsort.c

#include #include "snipsort.h" /* This is a quicksort routine to be used to sort linked-lists by Jon Guthrie. */ void *sortl(void *list, void *(*getnext)(void *),
www.eeworm.com/read/136689/13365727

jc spheres.jc

// spheres.jc // An applet for the ScriptApp application. // To run this script, simply drag it onto the ScriptApp's icon. // import native types import stdlib; import Screen; import Bitmap;
www.eeworm.com/read/319472/13451316

c mall.c

/* mall.c -- use the Queue interface */ /* compile with queue.c */ #include #include /* for rand() and srand() */ #include /* for time()
www.eeworm.com/read/315699/13537976

c mall.c

/* mall.c -- use the Queue interface */ /* compile with queue.c */ #include #include /* for rand() and srand() */ #include /* for time()
www.eeworm.com/read/315460/13542076

c randtest.c

/* * File: randtest.c * ---------------- * This program tests the ANSI rand function. */ #include #include #include "genlib.h" /* * Constants * --------- * NTrials -- Num
www.eeworm.com/read/313335/13590176

cpp 队列的链表存储结构及实现.cpp

#include"stdio.h" #include"stdlib.h" #define ElemType int typedef struct NodeType /*数据元素结点的结构*/ { ElemType data; struct NodeType *next; }NodeT