代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/189342/7114936
c srch_env.c
#include
#include
void main (int argc, char *argv[])
{
char path[128];
_searchenv(argv[1], "LIB", path);
if (path[0])
printf("Pathname: %s\n", path)
www.eeworm.com/read/189342/7115237
c atexit.c
#include
#include
void first(void)
{
printf("First function registered\n");
}
void second(void)
{
printf("Second function registered\n");
}
void main (vo
www.eeworm.com/read/189342/7115243
c showpath.c
#include
#include
void main (void)
{
char *entry;
entry = getenv("PATH");
if (*entry)
printf("PATH=%s\n", entry);
else
printf("PATH is not de
www.eeworm.com/read/189342/7115315
c min_max.c
#include
#include
void main (void)
{
printf("Maximum of %f and %f is %f\n",
10.0, 25.0, max(10.0, 25.0));
printf("Minimum of %f and %f is %f\n",
10.0,
www.eeworm.com/read/330064/7138449
cpp test1.cpp
#include
#include
int main()
{
int a = 23;
int b = 34;
int c = 56;
int d = 98;
int *ak[4] = {&a, &b, &c, &d};
int size = sizeof(ak);
printf("%d\n", *ak[1]);
www.eeworm.com/read/362716/7144125
c test.c
/*#include "STDIO.h"
#include "STDLIB.H" */
long i=0;
int pt[53000];
main()
{
for(i=0;i
www.eeworm.com/read/362716/7144133
c try2.c
/*#include "STDIO.h"
#include "STDLIB.H" */
long i=0;
int pt[53000];
main()
{
for(i=0;i
www.eeworm.com/read/140797/7147001
c strdup.c
/*
* strdup.c
*/
#include
#include
char *strdup(const char *s)
{
int l = strlen(s)+1;
char *d = malloc(l);
if ( d )
memcpy(d, s, l);
return d;
}
www.eeworm.com/read/140797/7147016
c atexit.c
/*
* atexit.c
*/
#include
int atexit(void (*fctn)(void))
{
return on_exit((void (*)(int, void *))fctn, NULL);
}
www.eeworm.com/read/140797/7147031
c srand48.c
/*
* srand48.c
*/
#include
#include
extern unsigned short __rand48_seed[3];
void srand48(long seedval)
{
__rand48_seed[0] = 0x330e;
__rand48_seed[1] = (unsigned short)s