代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/120969/14780964
cpp cpp1.cpp
#include
#include
void BInsertSort(int b[],int k);
void main(){
int n=8;
int a[8];
printf("请输入7个数:");
for(int s=1;s
www.eeworm.com/read/220690/14791832
c 实例8-5.c
#include
main()
{
printf("output begin\n");
printf("content in buffer");
exit(0);
}
www.eeworm.com/read/119982/14814863
c system.c
#include
void main(void)
{
if (system("DIR"))
printf("Error invoking DIR\n");
}
www.eeworm.com/read/119982/14814961
c map_rand.c
#include
#include
void main(void)
{
int i;
printf("Values from random\n");
for (i = 0; i < 10; i++)
printf("%f\n", random(100/100);
printf("Values
www.eeworm.com/read/119982/14814983
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/119773/14822664
cpp exam12-2.cpp
/*文件名:exam12_2.cpp*/
#include
#include
main()
{
int rows=0;
char fname[20],ch;
FILE *fp;
printf("输入文件名:");
scanf("%s",fname); /*接收用户输入的一个字符串*/
if ((fp=fopen(
www.eeworm.com/read/119626/14825194
c rkt1.c
#include "stdlib.h"
void rkt1(t,y,n,h,k,z,f)
void (*f)();
int n,k;
double t,h,y[],z[];
{ int i,j,l;
double a[4],tt,*b,*d;
b=malloc(n*sizeof(double));
d=malloc(n*size
www.eeworm.com/read/119473/14829786
asm copyuc.asm
include stdlib.a
includelib stdlib.lib
cseg segment byte public 'CODE'
assume cs:cseg, ds:nothing, es:dseg, ss:sseg
; Note: The constants CR (0dh) and LF (0ah) appear within the
; s
www.eeworm.com/read/218569/14915146
c mat.c
#include
#include
#include
void MATADD(float A[][6],float B[][6],float C[][6],int M,int N)
{ int I,J;
for(I=1;I
www.eeworm.com/read/117212/14934326
c ex5.c
#include
#include
int main()
{
printf("Hello World\n");
return 0;
}