代码搜索:stdlib

找到约 10,000 项符合「stdlib」的源代码

代码结果 10,000
www.eeworm.com/read/286304/8773303

c try2.c

/*#include "STDIO.h" #include "STDLIB.H" */ long i=0; int pt[53000]; main() { for(i=0;i
www.eeworm.com/read/429942/8781657

d fat.o.d

FAT.o: ../FAT/FAT.c ../FAT/FAT.h \ c:/winavr-20081205/lib/gcc/../../avr/include/stdlib.h \ c:\winavr-20081205\bin\../lib/gcc/avr/4.3.2/include/stddef.h ../FAT/FAT.h: c:/winavr-20081205/lib
www.eeworm.com/read/429631/8797754

h system.h

#ifndef __SYSTEM__H__ #define __SYSTEM__H__ #include #include #include #include #include #include #include
www.eeworm.com/read/285815/8815948

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/285689/8822769

h bstree.h

/**************************************/ /* 二叉排序树用的头文件 */ /* 文件名:bstree.h */ /**************************************/ #include #include typedef
www.eeworm.com/read/285490/8835983

c showenv.c

#include #include extern char **environ; int main() { char **env = environ; while(*env) { printf("%s\n",*env); env++; } exit(0); }
www.eeworm.com/read/285344/8849335

c p7.18.c

#include #include #include int main (void) { pid_t pid; pid = fork(); if(pid0)
www.eeworm.com/read/384270/8883787

makefile

# Accurate Polygon Scan Conversion Using Half-Open Intervals, # by Kurt Fleischer and David Salesin # # don't put any -g or -O here -- it's taken care of elsewhere # -Ac CFLAGS= -Aa OBJ = fixpoi
www.eeworm.com/read/187002/8884536

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/187002/8885423

c atexit.c

#include #include void first(void) { printf("First function registered\n"); } void second(void) { printf("Second function registered\n"); } void main (vo