代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/275885/10786815
c system1.c
/***************
// name ; system1.c
// author : pyy
// date : 2007-11-22
******************/
#include
#include
int main()
{
int myret;
myret=system("ls -l");
return 0
www.eeworm.com/read/419952/10827102
h operator.h
#include // cin 及 cout
#include // strcpy(): 字符串复制
#include // system("cls")
#include // 文件操作(写文件)
#include "list.h" // 我们要创建类 List 的
www.eeworm.com/read/275035/10838428
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/274564/10864454
c 9-3.c
/*9-3.c*/
#include
#include
#include
#include
main()
{
int i,j;
randomize();
while(!bioskey(1))
{
i=rand()*5000;
sound(i);
delay(10);
}
nosound();
}
www.eeworm.com/read/274564/10864535
c 4-3.c
/*4-3.c*/
#include
#include
main()
{
int a;
float b;
char *str;
scanf("%d,%f,%s",&a,&b,str);
printf("a=%d,b=%f,c=%s\n",a,b,str);
}
www.eeworm.com/read/274564/10864544
c 13-6.c
/*13-6.c*/
#include "stdio.h"
#include"stdlib.h"
#define N 1024
main()
{ FILE *fp;
int i;
char ch;
char *fname;
printf ("Enter the all file name:");
scanf("%s",fname);
if((fp=fopen
www.eeworm.com/read/419410/10870280
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/419410/10870864
c 4-27.c
#include
#include
#include
int main(int argc, char* argv[])
{
char a;
char *str=&a;
strcpy(str,"hello");
printf("%s\n",str);
return 0;
}
www.eeworm.com/read/419410/10870934
c 4-39.c
#include
#include
#include
int main()
{
char str[] = "ABCD1234efgh";
int length = strlen(str);
char *p1 = str; // p1指向字符串的第一个字符
char *p2 = str + length - 1
www.eeworm.com/read/274170/10886350
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