代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/456913/7337195
c try2.c
/*#include "STDIO.h"
#include "STDLIB.H" */
long i=0;
int pt[53000];
main()
{
for(i=0;i
www.eeworm.com/read/456598/7343980
c 例1-2.c
/* Note:Your choice is C IDE */
#include
#include
main()
{
char * str;
if((str=(char * )malloc(10))==NULL)
{
printf("\n Allocation is failed.");
e
www.eeworm.com/read/456386/7350041
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/456153/7356536
c mathtest.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/455905/7361969
~cpp register.~cpp
#include
#include
#include
#include "Register.h"
#include "Start.h"
#include
extern long EraseCnt; // 阻耠
www.eeworm.com/read/455905/7361972
cpp register.cpp
#include
#include
#include
#include "Register.h"
#include "Start.h"
#include
extern long EraseCnt; // 阻耠
www.eeworm.com/read/455595/7369719
txt pku 2249 组合数(不预处理).txt
#include
#include
#include
#include
using namespace std;
//PKU 2249 组合数(不预处理)
int main()
{
__int64 n,k,ans,i;
scanf("%I64d %I64d",&n,&k);
while
www.eeworm.com/read/455510/7370575
c blank.c
#include
#include
#include
#include"blank.h"
int blank(char *str)
{
char *p,*q,*r;
p=strchr(str,' ');
if(p==NULL)
return 1;
q=p+1;
while((*q!=
www.eeworm.com/read/454563/7387309
h stdafx.h
// stdafx.h : 标准系统包含文件的包含文件,
// 或是常用但不常更改的项目特定的包含文件
//
#pragma once
#include
#include
#include
#include
using namespace std;
// TODO: 在此处引用程序要
www.eeworm.com/read/453496/7418261
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)