代码搜索:Microphone array

找到约 10,000 项符合「Microphone array」的源代码

代码结果 10,000
www.eeworm.com/read/161772/10376493

c passing2.c

/* Passing an array to a function. Alternative way. */ #include #define MAX 10 int array[MAX+1], count; int largest(int num_array[]); int main( void ) { /* Input MAX val
www.eeworm.com/read/161528/10398794

c averagevalue.c

// **************************************************************** // Description: Library function to determine the // average value of a integer array. Note this code stresses // simplicity o
www.eeworm.com/read/161141/10445844

c averagevalue.c

// **************************************************************** // Description: Library function to determine the // average value of a integer array. Note this code stresses // simplicity o
www.eeworm.com/read/279175/10457263

c pqueue.c

/* Priority queue functions. Copyright (C) 2003 Yasuhiro Ohara This file is part of GNU Zebra. GNU Zebra is free software; you can redistribute it and/or modify it under the terms of the GNU Gene
www.eeworm.com/read/159601/10635473

rea malloc~1.rea

########################################################### Information on file: malloc4.c Written by Xavier Bouyssounouse. ########################################################### Routines in
www.eeworm.com/read/351491/10647249

cpp even.cpp

#include using std::cout; using std::cin; using std::endl; #include int check(int *, int); void exchange(int &, int &); void result(int *, int); void update(int *, int *, in
www.eeworm.com/read/350922/10696410

c funct_2d.c

#include void show_2d_array(int array[][10], int rows) { int i, j; for (i = 0; i < rows; i++) for (j = 0; j < 10; j++) printf("array[%d][%d] = %d\n", i, j, array
www.eeworm.com/read/350637/10725667

c funct_2d.c

#include void show_2d_array(int array[][10], int rows) { int i, j; for (i = 0; i < rows; i++) for (j = 0; j < 10; j++) printf("array[%d][%d] = %d\n", i, j, array
www.eeworm.com/read/276309/10748438

c funct_2d.c

#include void show_2d_array(int array[][10], int rows) { int i, j; for (i = 0; i < rows; i++) for (j = 0; j < 10; j++) printf("array[%d][%d] = %d\n", i, j, array
www.eeworm.com/read/349916/10782544

rea malloc~1.rea

########################################################### Information on file: malloc4.c Written by Xavier Bouyssounouse. ########################################################### Routines in