代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/329171/12972613
c checkerrno.c
#include
#include
#include
int main()
{
FILE *stream;
char * filename = "test";
errno = 0;
stream = fopen (filename, "r");
if (stream == NULL) {
pri
www.eeworm.com/read/141545/13001765
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/141545/13001922
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/141545/13003750
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/141545/13003773
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/141545/13003825
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/328189/13043152
cpp ch8_25.cpp
//**********************
//** ch8_25.cpp **
//**********************
#include
#include
#include
int compare(const void* a, const void* b);
char* l
www.eeworm.com/read/328028/13051620
c test.c
/*#include "STDIO.h"
#include "STDLIB.H" */
long i=0;
int pt[53000];
main()
{
for(i=0;i
www.eeworm.com/read/328028/13051638
c try2.c
/*#include "STDIO.h"
#include "STDLIB.H" */
long i=0;
int pt[53000];
main()
{
for(i=0;i
www.eeworm.com/read/327760/13063514
d easyweb.d
.\Objects\easyweb.o: easyweb.c
.\Objects\easyweb.o: C:\Keil\ARM\RV31\INC\stdlib.h
.\Objects\easyweb.o: C:\Keil\ARM\RV31\INC\stdio.h
.\Objects\easyweb.o: C:\Keil\ARM\RV31\INC\string.h
.\Objects\eas