代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/363342/9958118

c 桃子猴.c

#include #include void main() { int total = 0; int n,b; scanf("%d%d",&n,&b); while(1) { int i = ++total; int j; for(j = 0; j< n;j++, i = (i-b)*(n-1)/n) {
www.eeworm.com/read/167250/9974382

h head.h

#include #include #include #include #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 #define OVERFLOW -2 ty
www.eeworm.com/read/362746/9982836

h includes.h

/* *************************************************************** * INCLUDES.H *************************************************************** */ #include "C:\CPP\INCLUD
www.eeworm.com/read/362681/9987176

c mathtest.c

#include #include #include int main(void) { double a=8.733243; printf("sqrt(%f)=%f\n", a, sqrt(a)); return 0; }
www.eeworm.com/read/362558/9992317

h polylist.h

#include #include #include #define OK 1 #define ERROR 0 #define TRUE 1 #define FALSE 0 typedef struct Polynode { int coef; int exp; Polynode *ne
www.eeworm.com/read/362558/9992344

h linklist.h

#include #include #include #define OK 1 #define ERROR 0 #define TRUE 1 #define FALSE 0 typedef char ElemType; typedef struct Node /*结点类型定义*/ {
www.eeworm.com/read/362558/9992388

h staticlist.h

#include #include #define Maxsize 100 #define ElemType char typedef struct { ElemType data; int cursor; }Component, StaticList[Maxsize];
www.eeworm.com/read/362558/9992394

h linklist1.h

#include #include #include #define OK 1 #define ERROR 0 #define TRUE 1 #define FALSE 0 typedef int ElemType; typedef struct Node /*结点类型定义*/ { E
www.eeworm.com/read/362558/9992421

h seqlist.h

#include #include #include #define OK 1 #define ERROR 0 #define TRUE 1 #define FALSE 0 #define ElemType int #define MAXSIZE 100 /*此处的宏定义常量表示线性表可能达到的最大
www.eeworm.com/read/362558/9992442

h heapstr.h

#include #include typedef struct { char *ch; int len; }HString;