代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/338159/3320034
cpp array.cpp
/***************************/
/* FastScript v1.0 */
/* Arrays demo */
/***************************/
{
string ar[10];
for(int i = 0; i < 10; i++)
ar[i] = IntToStr
www.eeworm.com/read/338159/3320053
js array.js
//***************************/
//* FastScript v1.0 */
//* Arrays demo */
//***************************/
var ar[10];
for(var i = 0; i < 10; i++)
ar[i] = IntToStr
www.eeworm.com/read/338159/3320066
vb array.vb
'**************************
' FastScript v1.0
' Arrays demo
'**************************
dim i, j
dim ar[10]
dim s
for i = 0 to 9
ar[i] = IntToStr(i)
next
s =
www.eeworm.com/read/338159/3320098
pas array.pas
{**************************}
{ FastScript v1.0 }
{ Arrays demo }
{**************************}
var
i, j: Integer;
ar: array[0..9] of String;
s: String;
begin
www.eeworm.com/read/336825/3347209
h array.h
#ifndef ARRAY_INCLUDED
#define ARRAY_INCLUDED
#define T Array_T
typedef struct T *T;
extern T Array_new (int length, int size);
extern void Array_free(T *array);
extern int Array_length(T array);
e
www.eeworm.com/read/336825/3347248
c array.c
#include
#include
#include "assert.h"
#include "array.h"
#include "arrayrep.h"
#include "mem.h"
#define T Array_T
T Array_new(int length, int size) {
T array;
NEW(array);
if (
www.eeworm.com/read/336825/3347438
h array.h
/* $Id: H:/drh/idioms/book/RCS/array.doc,v 1.11 1997/10/29 22:05:21 drh Exp $ */
#ifndef ARRAY_INCLUDED
#define ARRAY_INCLUDED
#define T Array_T
typedef struct T *T;
extern T Array_new (int length,
www.eeworm.com/read/336825/3347448
c array.c
static char rcsid[] = "$Id: H:/drh/idioms/book/RCS/array.doc,v 1.11 1997/10/29 22:05:21 drh Exp $";
#include
#include
#include "assert.h"
#include "array.h"
#include "arrayrep.h"
www.eeworm.com/read/336825/3347588
h array.h
/* $RCSfile: RCS/array.doc,v $ $Revision: 1.9 $ */
#ifndef ARRAY_INCLUDED
#define ARRAY_INCLUDED
#define T Array_T
typedef struct T *T;
extern T Array_new (int length, int size);
extern void Array_
www.eeworm.com/read/336825/3347627
c array.c
static char rcsid[] = "$RCSfile: RCS/array.doc,v $ $Revision: 1.9 $";
#include
#include
#include "assert.h"
#include "array.h"
#include "arrayrep.h"
#include "mem.h"
#define T Ar