代码搜索:pointer

找到约 10,000 项符合「pointer」的源代码

代码结果 10,000
www.eeworm.com/read/320439/13427250

c r_enhanc.c

/* R_ENHANC.C - cryptographic enhancements for RSAREF */ /* Copyright (C) RSA Laboratories, a division of RSA Data Security, Inc., created 1991. All rights reserved. */ #include "globa
www.eeworm.com/read/320004/13437235

pas dbf_common.pas

unit dbf_common; interface {$I dbf_common.inc} uses SysUtils, Classes, DB {$ifndef WINDOWS} , Types, dbf_wtil {$ifdef KYLIX} , Libc {$endif} {$endif} ; const TDBF_MA
www.eeworm.com/read/320004/13437275

pas dbf_prssupp.pas

unit dbf_prssupp; // parse support {$I dbf_common.inc} interface uses Classes; type {TOCollection interfaces between OWL TCollection and VCL TList} TOCollection = class(TLi
www.eeworm.com/read/319883/13440371

cpp prog16_09.cpp

// Program 16.9 Using a pointer to a data member File: prog16_09.cpp #include #include "Box.h" // For the Box class #include "ToughPack.h"
www.eeworm.com/read/319883/13440477

cpp prog14_06.cpp

// Program 14.6 Using a smart pointer File: prog14_06.cpp #include #include // For random number generator #include // For time functio
www.eeworm.com/read/319497/13450379

pas ezdslskp.pas

{===EZDSLSKP========================================================== Part of the Delphi Structures Library--the skip list. EZDSLSKP is Copyright (c) 1993-2001 by Julian M. Bucknall VERSION
www.eeworm.com/read/319497/13450389

pas ezdsldbl.pas

{===EZDSLDBL========================================================== Part of the Delphi Structures Library--the double linked list. EZDSLDBL is Copyright (c) 1993-2001 by Julian M. Bucknall
www.eeworm.com/read/319487/13450561

cc ch5.8.cc

#include class X { double g(double a) { return a*a + 5.0; } double h(double a) { return a - 13; } public: void test(X*, X); }; typedef double (X::*pf)(double
www.eeworm.com/read/319472/13451252

c sum_arr2.c

/* sum_arr2.c -- sums the elements of an array */ #include #define SIZE 10 int sump(int * start, int * end); int main(void) { int marbles[SIZE] = {20,10,5,39,4,16,19,26,31,20};
www.eeworm.com/read/319472/13451258

c pnt_add.c

// pnt_add.c -- pointer addition #include #define SIZE 4 int main(void) { short dates [SIZE]; short * pti; short index; double bills[SIZE]; double * ptf;