代码搜索:array
找到约 10,000 项符合「array」的源代码
代码结果 10,000
www.eeworm.com/read/425699/10336432
c mexutils.c
/* file: mexutils.c
** author: Andrea Vedaldi
** description: Utility functions to write MEX files.
**/
/* AUTORIGHTS
Copyright (C) 2006 Regents of the University of California
All right
www.eeworm.com/read/162078/10336933
c arraytwo.c
#include
void main(void)
{
int count[10];
float salaries[5];
long distances[10];
printf("Address of the array count is %x &count is %x\n",
count, &count);
p
www.eeworm.com/read/162078/10337101
c arrayadd.c
#include
void main(void)
{
int count[10];
float salaries[5];
long distances[10];
printf("Address of the array count is %x\n", count);
printf("Address of the array
www.eeworm.com/read/425160/10376004
h checkedptr.h
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/161446/10412380
c sysmotvpdutil.c
/* sysMotVpdUtil.c - Vital Product Data Routines. */
/* Copyright 1984-2000 Wind River Systems, Inc. */
/* Copyright 1998-2000 Motorola, Inc., All Rights Reserved */
/*
modification history
--------
www.eeworm.com/read/279369/10443069
bas spihard.bas
' -------------------------------------------------------------------
' SPIHARD.BAS
' SPI demo for the hardware SPI found in the 89S8252
' -----------------------------
www.eeworm.com/read/279234/10452491
pl fig04_09.pl
#!/usr/bin/perl
# Fig. 4.9: fig04_09.pl
# Demonstrating array slices and list assignment.
@array =
qw( zero one two three four five six seven eight nine );
print "@array\n\n";
# display
www.eeworm.com/read/279234/10452508
pl fig04_11.pl
#!/usr/bin/perl
# Fig. 4.11: fig04_11.pl
# Demonstrating function splice.
# create two arrays and display their initial contents
@array = ( 0 .. 20 );
@array2 = ( A .. F );
print "\@array: @a
www.eeworm.com/read/279234/10452511
pl fig04_10.pl
#!/usr/bin/perl
# Fig. 4.10: fig04_10.pl
# Demonstrating the push, pop, shift and unshift functions.
# Use push to insert elements at the end of @array.
for ( $i = 1; $i
www.eeworm.com/read/279234/10452524
pl fig04_12.pl
#!/usr/bin/perl
# Fig. 4.12: fig04_12.pl
# Reversing the elements of an array and
# sorting arrays lexically and numerically.
# create @array with values from 1-10 and reverse the values
@arra