代码搜索:Arrays
找到约 6,123 项符合「Arrays」的源代码
代码结果 6,123
www.eeworm.com/read/359581/10135218
c array2d.c
// array2d.c -- functions for 2d arrays
#include
#define ROWS 3
#define COLS 4
void sum_rows(int ar[][COLS], int rows);
void sum_cols(int [][COLS], int ); // ok to omit names
int su
www.eeworm.com/read/356874/10219819
c array2d.c
// array2d.c -- functions for 2d arrays
#include
#define ROWS 3
#define COLS 4
void sum_rows(int ar[][COLS], int rows);
void sum_cols(int [][COLS], int ); // ok to omit names
int su
www.eeworm.com/read/279032/10478454
htm mi3.htm
More Effective C++ | Item 3: Never treat arrays polymorphica
www.eeworm.com/read/423301/10573299
cpp kasumi.cpp
#include
#include "kasumi.h"
/*-------- globals: The subkey arrays -----------------------------------*/
static u16 KLi1[8], KLi2[8];
static u16 KOi1[8], KOi2[8], KOi3[8];
stat
www.eeworm.com/read/421785/10698664
c array2d.c
// array2d.c -- functions for 2d arrays
#include
#define ROWS 3
#define COLS 4
void sum_rows(int ar[][COLS], int rows);
void sum_cols(int [][COLS], int ); // ok to omit names
int su
www.eeworm.com/read/459895/7263768
m corr_conv.m
%Compare the calculations of convolution and correlation of two arrays..
x = [1 2 4 -2 3 -6];
y = [-1 2 4 -3 5];
xy_corr = xcorr(x,y);
y = -y;
y = fliplr(y);
xy_conv = conv(x,y);
lth = max(le
www.eeworm.com/read/457902/7315699
c array2d.c
// array2d.c -- functions for 2d arrays
#include
#define ROWS 3
#define COLS 4
void sum_rows(int ar[][COLS], int rows);
void sum_cols(int [][COLS], int ); // ok to omit names
int su
www.eeworm.com/read/449530/7501230
c array2d.c
// array2d.c -- functions for 2d arrays
#include
#define ROWS 3
#define COLS 4
void sum_rows(int ar[][COLS], int rows);
void sum_cols(int [][COLS], int ); // ok to omit names
int su
www.eeworm.com/read/299239/7870885
h send_c30.h
/* SEND_C30.H - INCLUDE FILE FOR sendout, getinput and C30/C31 */
void main(void);
void c_int05(void);
void init_arrays(void);
void wait_buffer(void);
void command_process(void);
/* GLOBAL V
www.eeworm.com/read/197606/7984557
asm array1.asm
;
; file: array1.asm
; This program demonstrates arrays in assembly
;
; To create executable:
; nasm -f coff array1.asm
; gcc -o array1 array1.o array1c.c
;
%define ARRAY_SIZE 100
%define NEW_LINE