代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/328208/13041242
c 10wity.c
#include "stdlib.h"
void wity(t,y,n,h,k,z,f)
void (*f)();
int n,k;
double t,h,y[],z[];
{ int i,j;
double x,*a,*d;
a=malloc(n*sizeof(double));
d=malloc(n*sizeof(doubl
www.eeworm.com/read/328208/13041450
c 4ssgj.c
#include "stdlib.h"
#include "math.h"
#include "stdio.h"
int ssgj(a,n)
int n;
double a[];
{ int i,j,k,m;
double w,g,*b;
b=malloc(n*sizeof(double));
for (k=0; k
www.eeworm.com/read/328208/13041470
c 9mtml.c
#include "stdlib.h"
#include "math.h"
#include "3rnd1.c"
double mtml(n,a,b,f)
int n;
double a[],b[],(*f)();
{ int m,i;
double r,s,d,*x;
x=malloc(n*sizeof(double));
www.eeworm.com/read/141042/13045834
cpp and.cpp
#include
#include
#include
typedef struct sample
{
float a;
float b;
} SAMPLE;
void main()
{
SAMPLE w={0.058,0.065};
SAMPLE x[4]={{0,0},{0,1},{1,0},{1,
www.eeworm.com/read/326893/13110961
c environ.c
#include
#include
#include
void main (void)
{
int i;
for (i = 0; environ[i]; i++)
printf("%s\n", environ[i]);
}
www.eeworm.com/read/326893/13111011
c system.c
#include
void main (void)
{
if (system("DIR"))
printf("Error invoking DIR\n");
}
www.eeworm.com/read/326893/13111123
c random.c
#include
#include
void main(void)
{
int i;
printf("Values from rand\n");
for (i = 0; i < 100; i++)
printf("%d ", rand());
printf("Values from rando
www.eeworm.com/read/140003/13114753
c yulewalk.c
#include"stdlib.h"
#include"levinson.c"
void yulewalk(double x[],int n,int p,double a[],double *v)
{
int i,k;
double s,*r;
r=(double *)malloc((p+1)*sizeof(double));
for(k=0;k
www.eeworm.com/read/241771/13121021
c tc14-3.c
/*****************
tc14-3.c
数组倒置
******************/
#include "stdio.h"
#include "stdlib.h"
main( )
{
int i,k,n;
int a[20][3];
printf(" 计算题\n\n");
/*下面程序将产生随机的两位数并存储两位数和运算结果
www.eeworm.com/read/139738/13137239
c strcmp.c
#include "stdlib.h"
/* lexicographically compares a and b */
int strcmp(const char* a, const char* b) {
do {
if (*a < *b)
return -1;
if (*a > *b)
return 1;
}
while (*(a++) !