代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/208637/15241842
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/208637/15241849
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/208083/15254871
c 实例8-5.c
#include
main()
{
printf("output begin\n");
printf("content in buffer");
exit(0);
}
www.eeworm.com/read/206867/15286835
c system.c
#include
void main(void)
{
if (system("DIR"))
printf("Error invoking DIR\n");
}
www.eeworm.com/read/206867/15286933
c map_rand.c
#include
#include
void main(void)
{
int i;
printf("Values from random\n");
for (i = 0; i < 10; i++)
printf("%f\n", random(100/100);
printf("Values
www.eeworm.com/read/206867/15286955
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/206008/15302517
h randdef.h
#include
#include
#include
#include
void seedRand();
int randomInt(int);
www.eeworm.com/read/172774/5382135
c atol.c
#include
#include
#include
long atol(CONST char *s)
{
int uminus;
long v;
while (isspace(*s))
s++;
uminus = 0;
if (*s == '-')
{
uminus = 1;
www.eeworm.com/read/172774/5382141
c atoi.c
#include
#include
#include
int atoi(CONST char *s)
{
int uminus;
int v;
while (isspace(*s))
s++;
uminus = 0;
if (*s == '-')
{
uminus = 1;
www.eeworm.com/read/169775/5410427
c abs.c
/* abs.c - abs file for stdlib */
/* Copyright 1992-1993 Wind River Systems, Inc. */
/*
modification history
--------------------
01c,08feb93,jdi documentation cleanup for 5.1.
01b,20sep92,smb do