代码搜索:Arrays
找到约 6,123 项符合「Arrays」的源代码
代码结果 6,123
www.eeworm.com/read/398147/8002103
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
www.eeworm.com/read/245818/12779164
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/319472/13451255
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/315699/13537915
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/305575/13765574
m hfun.m
function[H]=hfun(varargin)
% HFUN Sea surface height interaction functions for wave triads.
%
% HFUN(I,K1,K2) returns the i-th H-function (H_i) operating on
% wavenumeber arrays K1 and K2, define
www.eeworm.com/read/305575/13765641
m dfun.m
function[D]=dfun(varargin)
%DFUN Velocity potential interaction functions for wave triads.
%
% DFUN(I,K1,K2) returns the i-th D-function (D_i) operating on
% wavenumber arrays K1 and K2, defin
www.eeworm.com/read/147331/5732121
c vec_calloc.c
/*
FUNCTION
---allocate space for arrays
INDEX
vec_calloc
INDEX
_vec_calloc_r
ANSI_SYNOPSIS
#include
void *vec_calloc(size_t , size_t );
void *vec_calloc_r(v
www.eeworm.com/read/124347/6051582
c vec_calloc.c
/*
FUNCTION
---allocate space for arrays
INDEX
vec_calloc
INDEX
_vec_calloc_r
ANSI_SYNOPSIS
#include
void *vec_calloc(size_t , size_t );
void *vec_calloc_r(v
www.eeworm.com/read/487981/6503363
java lesson3.java
class Lesson3
{
public static void main(String [] args)
{
int [] x;
x=new int[100];
x=null;
x=new int[]{3,2,1,4};
//java.util.Arrays.sort(x);
int [] y=new int[10];
System.arr
www.eeworm.com/read/410432/11287482
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