代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/161438/5553286
c system.c
#include
void main(void)
{
if (system("DIR"))
printf("Error invoking DIR\n");
}
www.eeworm.com/read/161438/5553383
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/161438/5553405
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/159853/5580371
c atox.c
#include
#include
#define ATOX(suffix, type) \
type ato##suffix(CONST char *s) { int uminus; type v; \
while (isspace(*s)) s++; \
uminus = 0; \
if (*s == '-') { umi
www.eeworm.com/read/475955/6771106
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/475955/6771139
c system.c
#include
void main (void)
{
if (system("DIR"))
printf("Error invoking DIR\n");
}
www.eeworm.com/read/475955/6771202
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/475169/6793756
cpp shell.cpp
#include
#include
//shell排序算法
void ShellSort(int R[],int n)
{
int i,j,d,k;
int temp;
d=n/2; //d取初值n/2
while(d>0)
{
for(i=d;i
www.eeworm.com/read/475204/6794027
c system.c
#include
void main (void)
{
if (system("DIR"))
printf("Error invoking DIR\n");
}
www.eeworm.com/read/472768/6865280
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