代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/468329/6996621
cpp swaps.cpp
// swaps.cpp -- swapping with references and with pointers
#include
void swapr(int & a, int & b); // a, b are aliases for ints
void swapp(int * p, int * q); // p, q are addresses of
www.eeworm.com/read/465734/7044593
cpp next_perm_example.cpp
//Examples of using next_permutation
#include
#include
#include
#include
using namespace std;
//using pointers
void display(char* c_str)
{
cout
www.eeworm.com/read/166571/7095580
makefile
include Makefile.h
all::
CODE_DIRS = basics details \
poly traits inherit meta exprtmpl \
types pointers tuples functors
all::
@for DIR in $(CODE_DIRS); \
do \
www.eeworm.com/read/456533/7345799
cpp swaps.cpp
// swaps.cpp -- swapping with references and with pointers
#include
void swapr(int & a, int & b); // a, b are aliases for ints
void swapp(int * p, int * q); // p, q are addresses of
www.eeworm.com/read/456533/7346104
cpp swaps.cpp
// swaps.cpp -- swapping with references and with pointers
#include
void swapr(int & a, int & b); // a, b are aliases for ints
void swapp(int * p, int * q); // p, q are addresses of
www.eeworm.com/read/456367/7350656
cpp swaps.cpp
// swaps.cpp -- swapping with references and with pointers
#include
void swapr(int & a, int & b); // a, b are aliases for ints
void swapp(int * p, int * q); // p, q are addresses of
www.eeworm.com/read/456367/7350940
cpp swaps.cpp
// swaps.cpp -- swapping with references and with pointers
#include
void swapr(int & a, int & b); // a, b are aliases for ints
void swapp(int * p, int * q); // p, q are addresses of
www.eeworm.com/read/443713/7625613
lst chap19.lst
listing 1
// Demonstrate pointers and unsafe.
using System;
class UnsafeCode {
// Mark Main as unsafe.
unsafe public static void Main() {
int count = 99;
int* p; // crea
www.eeworm.com/read/435150/7796497
cpp prog9_05.cpp
// Program 9.5 Exercising pointers to functions
#include
using std::cout;
using std::endl;
long sum(long a, long b); // Function prototype
long product(long a, long b);
www.eeworm.com/read/299432/7859237
inc dos.inc
; DOS Interface Macros - Version 1.3 - for Microsoft Macro Assembler 6.1
; (C) Copyright Microsoft Corporation, 1987, 1988, 1989, 1990, 1993
; Typedefs for testing pointers
NPVOID TYPEDEF NEAR P