代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/360887/10073372
c main.c
#include
#include
#include
int main(void)
{
double a=8.733243;
printf("sqrt(%f)=%f\n", a, sqrt(a));
return 0;
}
www.eeworm.com/read/360206/10106424
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/360206/10106625
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/164288/10119920
c test.c
#include
#include
#include
#include
void test(char **p)
{
*p = (char*) realloc (*p, 128*sizeof(char));
if((*p)==NULL){
printf("malloc error\n");
e
www.eeworm.com/read/359581/10135441
c setbuf.c
/* reverse.c -- displays a file in reverse order */
#include
#include
int main(void)
{
printf("%d\n", BUFSIZ);
return 0;
}
www.eeworm.com/read/359541/10139994
c hello.c
#include
#include
int main(int argc, char **argv)
{
printf("Hello Reader,Congradulations!!!\n");
return(0);
}
www.eeworm.com/read/163722/10148131
c testall.c
#include
#include
FILE *itest,*otest;
void test(FILE *itest)
{
int a, b, x;
FILE *ifile,*ofile,*f1;
x=1;
f1=testdriver1(itest);
otest=testdriver2(f1);
www.eeworm.com/read/356874/10219948
c setbuf.c
/* reverse.c -- displays a file in reverse order */
#include
#include
int main(void)
{
printf("%d\n", BUFSIZ);
return 0;
}
www.eeworm.com/read/356292/10232318
c exit.c
# include
# include
void main()
{
int month;
int day;
printf("please input the month number: ");
scanf("%d", &month);
switch (month)
{
case 1:
case 3:
ca
www.eeworm.com/read/355913/10241567
cpp 11_92.cpp
#include
#include
#include
#include
void main()
{
int r; char c;
fstream file;
char fn[15],buf[100];
coutfn;
f