代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/350637/10725964
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 def
www.eeworm.com/read/350637/10726004
c putenv.c
#include
#include
void main(void)
{
if (putenv("BOOK=Jamsa\'s C & C++ Programmer\'s Bible"))
printf("Error writing to environment\n");
else
{
int
www.eeworm.com/read/350637/10726091
c atexit.c
#include
#include
void first(void)
{
printf("First function registered\n");
}
void second(void)
{
printf("Second function registered\n");
}
void main(voi
www.eeworm.com/read/350636/10726717
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/350636/10727081
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, 2
www.eeworm.com/read/276309/10748386
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/276309/10749224
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/276309/10749254
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/276309/10749476
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/276181/10758349
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)
{