代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/253969/12172534
pas dcu_in.pas
{$A+,B-,C+,D+,E-,F-,G+,H+,I+,J+,K-,L+,M-,N+,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}
unit DCU_In;
(*
The input module of the DCU32INT utility by Alexei Hmelnov.
---------------------------------------
www.eeworm.com/read/151781/12176204
c decodeiff.c
/*
***********************************************************************
* COPYRIGHT AND WARRANTY INFORMATION
*
* Copyright 2001, International Telecommunications Union, Geneva
*
* DISCLAIMER
www.eeworm.com/read/151777/12176545
asm ucos2xxa.asm
.page
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Module : ucos2xxa.asm
;
; Purpose : TMS320C2XX Real Time Operating System.
;
; Language :
www.eeworm.com/read/253866/12181172
cpp list0803.cpp
// Listing 8.3
// What is stored in a pointer.
#include
int main()
{
using namespace std;
unsigned short int myAge = 5, yourAge = 10;
// a pointer
unsigned short
www.eeworm.com/read/253730/12203721
pas attackthreads.pas
unit AttackThreads;
interface
uses
Windows, Messages, SysUtils, Variants, Classes;
type
TAttackThreads = class(TThread)
private
FStartAddress:Dword;
FActorMemList:TStrings;
www.eeworm.com/read/151476/12207808
hpp countingptr.hpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/151476/12207812
hpp holder.hpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/253454/12220824
h wt.h
/*
Slow Walsh transform
x - pointer to input data
y - pointer to output data
n - order (number of data points)
*/
void WT(int *x,int *y,int n);
www.eeworm.com/read/253260/12234270
cpp addpntrs.cpp
// addpntrs.cpp -- pointer addition
#include
int main()
{
using namespace std;
double wages[3] = {10000.0, 20000.0, 30000.0};
short stacks[3] = {3, 2, 1};
// Here are t
www.eeworm.com/read/253260/12234921
cpp strgback.cpp
// strgback.cpp -- a function returning a pointer to char
#include
char * buildstr(char c, int n); // prototype
int main()
{
using namespace std;
int times;
char ch;