代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/363888/9933113
cpp functiontable.cpp
//: C03:FunctionTable.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Using an array of pointers
www.eeworm.com/read/359581/10135269
c func_ptr.c
// func_ptr.c -- uses function pointers
#include
#include
#include
char showmenu(void);
void eatline(void); // read through end of line
void show(void (*
www.eeworm.com/read/356874/10219852
c func_ptr.c
// func_ptr.c -- uses function pointers
#include
#include
#include
char showmenu(void);
void eatline(void); // read through end of line
void show(void (*
www.eeworm.com/read/422253/10651987
txt 14-10.txt
PE 14-10
/* pe14-10.c */
/* the tricky part is declaring an array of pointers to functions */
#include
#include
double twice(double x);
double half(double x);
double
www.eeworm.com/read/421785/10698797
c func_ptr.c
// func_ptr.c -- uses function pointers
#include
#include
#include
char showmenu(void);
void eatline(void); // read through end of line
void show(void (*
www.eeworm.com/read/158966/10706684
cpp functiontable.cpp
//: C03:FunctionTable.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Using an array of pointers
www.eeworm.com/read/271450/10994415
cpp wrapped.cpp
//: C23:Wrapped.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Safe, atomic pointers
#in
www.eeworm.com/read/271450/10994643
cpp voidrtti.cpp
//: C24:Voidrtti.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// RTTI & void pointers
#in
www.eeworm.com/read/459616/7270158
cpp simul.cpp
// test simulated pointers
#include
#include "simul.h"
void main(void)
{
int x;
SimSpace L(5);
x = L.Allocate();
cout