代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/123658/14618776
c sig.c
/* Functions dealing with signatures and signature pointers/references.
Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
Contributed by Gerald Baumgartner (gb@cs.purdue.edu)
www.eeworm.com/read/123453/14631794
h list.h
/*
* list.h - generic dynamic list
*
* This is a generic, dynamic list. Generic means that it stores void pointers
* (void *), instead of a more specific data type. This allows storage of
* any t
www.eeworm.com/read/123453/14632494
h list.h
/*
* list.h - generic dynamic list
*
* This is a generic, dynamic list. Generic means that it stores void pointers
* (void *), instead of a more specific data type. This allows storage of
* any t
www.eeworm.com/read/220439/14800875
cpp swap_pointer_ver.cpp
// Swap Pointer
// Demonstrates passing constant pointers to alter argument variables
#include
using namespace std;
void badSwap(int x, int y);
void goodSwap(int* const pX, int*
www.eeworm.com/read/220439/14800880
cpp tic-tac-toe2.cpp
// Tic-Tac-Toe 2.0
// Plays the game of tic-tac-toe against a human opponent
// Uses pointers instead of refernces for function parameters
#include
#include
#include
www.eeworm.com/read/220439/14800884
cpp array_passer.cpp
//Array Passer
//Demonstrates relationship between pointers and arrays
#include
using namespace std;
void increase(int* const array, const int NUM_ELEMENTS);
void display(const i
www.eeworm.com/read/217242/14972906
c unzipfile.c
#include
#include
#include "../LiteUnzip.h"
// Where we store the pointers to LiteUnzip.dll's functions that we call
UnzipOpenFilePtr *lpUnzipOpenFile;
UnzipGetIt
www.eeworm.com/read/217242/14972921
c unzipresource.c
#include
#include
#include "../LiteUnzip.h"
// Where we store the pointers to LiteUnzip.dll's functions that we call
UnzipOpenBufferPtr *lpUnzipOpenBuffer;
UnzipG
www.eeworm.com/read/217242/14972964
c unzipmem.c
#include
#include
#include "../LiteUnzip.h"
// Where we store the pointers to LiteUnzip.dll's functions that we call
UnzipOpenFilePtr *lpUnzipOpenFile;
UnzipGetIt
www.eeworm.com/read/207217/15279398
h sparsearray.h
// Exercise 17.4 SparseArray.h
// SparseArray class definition - stores pointers to strings
#ifndef SPARSEARRAY_H
#define SPARSEARRAY_H
#include
using std::string;
class SparseArray