代码搜索:instead
找到约 6,048 项符合「instead」的源代码
代码结果 6,048
www.eeworm.com/read/175135/9558607
cpp arrfun2.cpp
// arrfun2.cpp -- functions with an array argument
#include
const int ArSize = 8;
int sum_arr(int arr[], int n);
// use std:: instead of using directive
int main()
{
int cookies[
www.eeworm.com/read/169983/9828061
019 29a-7.019
September 2003
NT PASSWORD CREATION
I cannot finish this code until next year..so
instead of keep it lying around, i thought
i'd pass it out.
The plan was to create a packet capture utili
www.eeworm.com/read/365713/9850052
c alloca.c
/*
alloca -- (mostly) portable public-domain implementation -- D A Gwyn
last edit: 86/05/30 rms
include config.h, since on VMS it renames some symbols.
Use xmalloc instead of malloc.
www.eeworm.com/read/365484/9861476
m surfergriddata.m
function [Xi,Yi,Zi]=surfergriddata(X,Y,Z,varargin)
% Just like griddata but uses surfer instead. Default kringing
%
% Usage:
% [|[Xi,Yi],Zi]=surfergriddata(X,Y,Z,|[Xi,Yi],|[method])
%
% Exampl
www.eeworm.com/read/364162/9919697
pas crc.pas
unit CRC;
{(C) Coban(alex@ritlabs.com)}
{$DEFINE USE_ASM} //Remove this line to use pascal instead of assembler
interface
uses
CryptoUtils;
procedure CRC32Init(var crc: LongWord);
pro
www.eeworm.com/read/166186/10030263
cc or.cc
#include "or.h"
#include
//Nexthop is the end ,use -1 instead! in fact,-1 means BROADCAST
#define END -1
int hdr_or::offset_;
static class OrHeaderClass : public PacketHeaderClass {
publi
www.eeworm.com/read/358682/10182190
cpp arrfun2.cpp
// arrfun2.cpp -- functions with an array argument
#include
const int ArSize = 8;
int sum_arr(int arr[], int n);
// use std:: instead of using directive
int main()
{
int cookies[
www.eeworm.com/read/280395/10333247
c alloca.c
/*
alloca -- (mostly) portable public-domain implementation -- D A Gwyn
last edit: 86/05/30 rms
include config.h, since on VMS it renames some symbols.
Use xmalloc instead of malloc.
This
www.eeworm.com/read/279452/10436332
in config.h.in
/* config.h.in. Generated from configure.ac by autoheader. */
/* Define to 1 if the `closedir' function returns void instead of `int'. */
#undef CLOSEDIR_VOID
/* Define to one of `_getb67', `GETB6
www.eeworm.com/read/353439/10446265
java sequence9.java
// holding/Sequence9.java
// TIJ4 Chapter Holding, Exercise 9, page 409
// Modify innerclasses/Sequence.java so that Sequence works with an Iterator
// instead of a Selector.
import java.util.*;