代码搜索:array
找到约 10,000 项符合「array」的源代码
代码结果 10,000
www.eeworm.com/read/290185/8498583
java practical quiz 8.dvd.java
/**
* This interface declares the methods for obtaining DVD information.
*
* @author Neil
* @version 1.0.0
*/
public interface DVD {
/**
* Returns the region code of the DVD.
*
www.eeworm.com/read/188512/8532955
cpp fig08_16.cpp
// Fig. 8.16: fig08_16.cpp
// Sizeof operator when used on an array name
// returns the number of bytes in the array.
#include
using std::cout;
using std::endl;
size_t getSize( doub
www.eeworm.com/read/188512/8533133
cpp fig07_08.cpp
// Fig. 7.8: fig07_08.cpp
// Compute the sum of the elements of the array.
#include
using std::cout;
using std::endl;
int main()
{
const int arraySize = 10; // constant variable
www.eeworm.com/read/188512/8533212
cpp fig07_04.cpp
// Fig. 7.4: fig07_04.cpp
// Initializing an array in a declaration.
#include
using std::cout;
using std::endl;
#include
using std::setw;
int main()
{
// use initi
www.eeworm.com/read/188512/8533221
cpp fig07_03.cpp
// Fig. 7.3: fig07_03.cpp
// Initializing an array.
#include
using std::cout;
using std::endl;
#include
using std::setw;
int main()
{
int n[ 10 ]; // n is an array
www.eeworm.com/read/289184/8569344
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/289184/8569423
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/388784/8575760
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/432641/8584899
c misc.c
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the l