代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/406613/11439115
c random.c
#include
#include
void main(void)
{
int i;
printf("Values from rand\n");
for (i = 0; i < 100; i++)
printf("%d ", rand());
printf("Values from rando
www.eeworm.com/read/405944/11452934
html cstdlib.html
<cstdlib>
<cstdlib>
Include the standard header <cstdlib>
to
www.eeworm.com/read/405944/11453820
html cstdlib.html
<cstdlib>
<cstdlib>
Include the standard header <cstdlib>
to
www.eeworm.com/read/404823/11477475
d fat.o.d
FAT.o: ../FAT/FAT.c ../FAT/FAT.h C:/WinAVR/avr/include/stdlib.h \
C:\WinAVR\bin/../lib/gcc/avr/3.4.6/include/stddef.h
../FAT/FAT.h:
C:/WinAVR/avr/include/stdlib.h:
C:\WinAVR\bin/../lib/gcc
www.eeworm.com/read/400552/11574496
c fileio.c
# include
# include
void main()
{
/* 定义一个文件指针fp */
FILE *fp;
char ch, filename[10];
printf("Please input the name of file: ");
scanf("%s", filename); /* 输入字符串并赋给
www.eeworm.com/read/400552/11574505
c fseek.c
# include
# include
void main(int argc, char *argv[])
{
FILE *fp;
if(argc!=3)
{
printf("缺少字节位置,无法进行操作。\n");
exit(0);
}
if((fp=fopen(argv[1], "rb"))==NULL)
www.eeworm.com/read/158402/11620976
c strcmp.c
#include "stdlib.h"
/* lexicographically compares a and b */
int strcmp(const char* a, const char* b) {
do {
if (*a < *b)
return -1;
if (*a > *b)
return 1;
}
while (*(a++) !
www.eeworm.com/read/158402/11621014
c memcpy.c
#include "stdlib.h"
void *memcpy(void *s1, const void *s2, unsigned n) {
int i;
for (i=0; i
www.eeworm.com/read/259865/11761516
c environ.c
#include
#include
#include
void main (void)
{
int i;
for (i = 0; environ[i]; i++)
printf("%s\n", environ[i]);
}
www.eeworm.com/read/259865/11761570
c system.c
#include
void main (void)
{
if (system("DIR"))
printf("Error invoking DIR\n");
}