代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/175226/9555109
cpp list1505.cpp
// Listing 15.5 Using function pointers
#include
using namespace std;
void Square (int&,int&);
void Cube (int&, int&);
void Swap (int&, int &);
void GetVals(int&, int&);
void Pri
www.eeworm.com/read/175226/9555112
cpp list1506.cpp
// Listing 15.6 Without function pointers
#include
using namespace std;
void Square (int&,int&);
void Cube (int&, int&);
void Swap (int&, int &);
void GetVals(int&, int&);
void P
www.eeworm.com/read/175226/9555129
cpp list1508.cpp
// Listing 15.8 Without function pointers
#include
using namespace std;
void Square (int&,int&);
void Cube (int&, int&);
void Swap (int&, int &);
void GetVals(int&, int&);
void P
www.eeworm.com/read/462034/7211984
c serial.c
#include
#include
#include "serial.h"
void my_puts(const char *s);
char tx_buffer[TX_BUFFER_SIZE];
/* Read and write pointers into the serial circular buffer */
volatil
www.eeworm.com/read/459616/7270373
h make2da.h
#ifndef Make2DArray_
#define Make2DArray_
template
bool Make2DArray(T ** &x, int rows, int cols)
{// Create a two-dimensional array.
try {
// create pointers for the rows
x
www.eeworm.com/read/479166/6700299
cpp fig13_05.cpp
// Fig. 13.5: fig13_05.cpp
// Aiming base-class and derived-class pointers at base-class
// and derived-class objects, respectively.
#include
using std::cout;
using std::endl;
using s
www.eeworm.com/read/477671/6730532
cpp memfun2.cpp
//: C08:MemFun2.cpp
// From "Thinking in C++, 2nd Edition, Volume 2"
// by Bruce Eckel & Chuck Allison, (c) 2001 MindView, Inc.
// Available at www.BruceEckel.com.
// Applying pointers to member f
www.eeworm.com/read/477671/6730559
cpp memfun1.cpp
//: C08:MemFun1.cpp
// From "Thinking in C++, 2nd Edition, Volume 2"
// by Bruce Eckel & Chuck Allison, (c) 2001 MindView, Inc.
// Available at www.BruceEckel.com.
// Applying pointers to member f