代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/191800/8422004
cpp gasdev.cpp
#include
#include
//float gasdev(idum)
//long *idum;
float gasdev()
{
return 0;
}
/* Function stub in place of code that is:
(C) Copr. 1986-92 Numerical Recipes Software 0H
www.eeworm.com/read/190267/8445996
c hello.c
#include
#include
int main (int argc, char **argv)
{
printf ("Hello world!\n");
printf ("Hello world again!\n");
return 0;
}
www.eeworm.com/read/190267/8446005
c bugging.c
#include
#include
static char buff [256];
static char* string;
int main ()
{
printf ("Please input a string: ");
gets (string);
printf ("\nYour string is
www.eeworm.com/read/190267/8446010
c main.c
#include
#include
int factorial (int n);
int main (int argc, char **argv)
{
int n;
if (argc < 2) {
printf ("Usage: %s n\n", argv [0]);
return
www.eeworm.com/read/390362/8469397
c test.c
/*#include "STDIO.h"
#include "STDLIB.H" */
long i=0;
int pt[53000];
main()
{
for(i=0;i
www.eeworm.com/read/390362/8469433
c try2.c
/*#include "STDIO.h"
#include "STDLIB.H" */
long i=0;
int pt[53000];
main()
{
for(i=0;i
www.eeworm.com/read/390220/8476036
h operater.h
#include // cin 及 cout
#include // strcpy(): 字符串复制
#include // system("cls")
#include // 文件操作(写文件)
#include "list.h" // 我们要创建类 List
www.eeworm.com/read/290380/8486269
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/290380/8486891
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/290380/8486917
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