代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/444375/7613299
c hugeint.c
#include
#include
void main (void)
{
long int i;
int huge *big_array;
if ((big_array = (int huge *) halloc (100000L,
sizeof(long int))) == NULL)
www.eeworm.com/read/444091/7618139
c clrarray.c
/*
** Set all of the elements of an array to zero.
*/
void
clear_array( int array[], int n_elements )
{
/*
** Clear the elements of the array starting with the last
** and working towards
www.eeworm.com/read/438562/7729764
c mem.c
#include "mem.h"
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*
* Mow-Song, Ng
www.eeworm.com/read/436521/7768590
c clrarray.c
/*
** Set all of the elements of an array to zero.
*/
void
clear_array( int array[], int n_elements )
{
/*
** Clear the elements of the array starting with the last
** and working towards
www.eeworm.com/read/436250/7773955
c sum_2d.c
#include
long sum_array(int array[], int elements)
{
long sum = 0;
int i;
for (i = 0; i < elements; i++)
sum += array[i];
return(sum);
}
void main(voi
www.eeworm.com/read/436250/7774005
c hugeint.c
#include
#include
void main (void)
{
long int i;
int huge *big_array;
if ((big_array = (int huge *) halloc (100000L,
sizeof(long int))) == NULL)
www.eeworm.com/read/435150/7796178
cpp main.cpp
// Exercise 11.4 Outputting a SharedData array - main.cpp
// The shareddata.h and shareddata.cpp file are as for Ex 11.3
#include "shareddata.h"
#include
using std::cout;
using std::en
www.eeworm.com/read/435150/7796500
cpp prog9_06.cpp
// Program 9.6 A pointer to a function as an argument
#include
using std::cout;
using std::endl;
// Function prototypes
double squared(double);
double cubed(double);
www.eeworm.com/read/198958/7901109
c mem.c
#include "mem.h"
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*
* Mow-Song, Ng