代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/136690/13365712
jc functions.jc
/*
* functions.jc
*
* This file will explain a little how functions (and methods) are used
* in JewelScript.
*/
/* import the standard library, so we can print to console */
import std
www.eeworm.com/read/322132/13389222
c bssgj.c
#include "stdlib.h"
#include "math.h"
#include "stdio.h"
int bssgj(a,n)
int n;
double a[];
{ int i,j,k,m;
double w,g,*b;
b=(double *)malloc(n*sizeof(double));
for (k
www.eeworm.com/read/321679/13400984
cpp rand.cpp
#include
#include
#include
void main()
{
int i,j;
for(i=1;i
www.eeworm.com/read/321265/13409791
c exit.c
#include
#include
int main()
{
printf("Using exit...\n");
printf("This is the content in buffer");
exit(0);
}
www.eeworm.com/read/321265/13409794
c execlp.c
#include
#include
#include
int main()
{
if(fork()==0){
if(execlp("ps","ps","-ef",NULL)
www.eeworm.com/read/321265/13409798
c execl.c
#include
#include
#include
int main()
{
if(fork()==0){
if(execl("/bin/ps","ps","-ef",NULL)
www.eeworm.com/read/320816/13418039
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/320816/13418062
c system.c
#include
void main (void)
{
if (system("DIR"))
printf("Error invoking DIR\n");
}
www.eeworm.com/read/320816/13418125
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/320570/13422785
c 7qrrt.c
#include "stdlib.h"
#include "5hhqr.c"
int qrrt(a,n,xr,xi,eps,jt)
int n,jt;
double a[],xr[],xi[],eps;
{ int i,j;
double *q;
q=malloc(n*n*sizeof(double));
for (j=0; j