代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/165080/10077373
h random.h
www.eeworm.com/read/360807/10077629
o random.o
www.eeworm.com/read/164708/10092471
c random.c
/*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiven
www.eeworm.com/read/360354/10101073
gif random.gif
www.eeworm.com/read/360340/10101877
h random.h
#include
/* variables are declared static so that they cannot conflict
with names of */
/* other global variables in other files. See K&R, p 80, for
scope of static */
static double
www.eeworm.com/read/360206/10106605
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/164463/10106780
h random.h
/*
* include/linux/random.h
*
* Include file for the random number generator.
*/
#ifndef _LINUX_RANDOM_H
#define _LINUX_RANDOM_H
#include
/* ioctl()'s for the random number gene
www.eeworm.com/read/359567/10137515
c random.c
/*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiven
www.eeworm.com/read/163401/10162795
mpg random.mpg
www.eeworm.com/read/358682/10182163
cpp random.cpp
// random.cpp -- random access to a binary file
#include // not required by most systems
#include
#include
#include // (or stdlib.h) for exit()
c