代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/242043/13097368
cpp array.cpp
#include
#include
enum ErrorType{InvalidArraySize,MemoryAllocationError,IndexOutOfRange};
char *errorMsg[] = {"Invalid Array Size", "Memory Allocation Error", "Index Out O
www.eeworm.com/read/240985/13182326
h array.h
/*------------------------------------------------------------------------*/
/* */
/* ARRAY.H
www.eeworm.com/read/240985/13182959
cpp array.cpp
/*------------------------------------------------------------------------*/
/* */
/* ARRAY.CPP
www.eeworm.com/read/240985/13183065
h array.h
/*------------------------------------------------------------------------*/
/* */
/* ARRAY.H
www.eeworm.com/read/139030/13191644
gif array.gif
www.eeworm.com/read/139030/13191747
gif array.gif
vti_encoding:SR|utf8-nl
vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000
vti_extenderversion:SR|5.0.2.2623
vti_backlinkinfo:VX|asm_tutorial_03.html
vti_author:SR|friend
vti_modifiedby:SR|friend
www.eeworm.com/read/138927/13202371
fc array.fc
void main (string args[])
{
string sarray[5];
sarray[0] = "string0";
sarray[1] = "string0";
sarray[2] = "string0";
sarray[3] = "string0";
sarray[4] = "string0";
printf("%s\n", sarray[0]);
pri
www.eeworm.com/read/240686/13205051
h array.h
#ifndef ARRAY_CLASS
#define ARRAY_CLASS
#include
#include
#ifndef NULL
const int NULL = 0;
#endif // NULL
enum ErrorType
{invalidArraySize, memoryAllocationErr
www.eeworm.com/read/240295/13226479
cpp array.cpp
#include "stdafx.h"
#include "array.h"
CArray::CArray()
{
Reset();
}
CArray::~CArray()
{
}
bool CArray::Add(int nElement)
{
if(m_nCount < 0 || m_nCount >= MAX_ELEMENT)
re