代码搜索:pointers

找到约 4,056 项符合「pointers」的源代码

代码结果 4,056
www.eeworm.com/read/315699/13537948

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/312169/13616942

cpp ptrarrayfunction.cpp

// Listing 20.6 arrays of pointers to functions #include void Square (int&,int&); void Cube (int&, int&); void Swap (int&, int &); void GetVals(int&, int&); void Prin
www.eeworm.com/read/312169/13616943

cpp ptrtofunction.cpp

// Listing 20.5 Using function pointers #include void Square (int&,int&); void Cube (int&, int&); void Swap (int&, int &); void GetVals(int&, int&); void PrintVals(in
www.eeworm.com/read/307616/13719235

cpp ex4_06.cpp

// EX4_06.CPP // Initializing pointers with strings #include using std::cin; using std::cout; using std::endl; int main() { char* pstr1 = "Robert Redford"; char* pstr2 = "H
www.eeworm.com/read/139903/5795632

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/131283/5947099

h counted_mt_ptr.h

#ifndef __GradSoft_counted_mt_ptr_h #define __GradSoft_counted_mt_ptr_h /* * counted_ptr.h --- definition of counted pointers . * (C) Ruslan Shevchenko, , 1997 * (C) Gra
www.eeworm.com/read/131283/5947186

h counted_ptr.h

#ifndef __GradSoft_counted_ptr_h #define __GradSoft_counted_ptr_h /* * counted_ptr.h --- definition of counted pointers . * (C) Ruslan Shevchenko, , 1997 * (C) Grad-Soft
www.eeworm.com/read/125688/6023239

h pgtable.h

/* * linux/include/asm-arm/proc-armv/pgtable.h * * Copyright (C) 1995, 1996, 1997 Russell King * * 12-Jan-1997 RMK Altered flushing routines to use function pointers * now possible to combine
www.eeworm.com/read/477671/6730641

h purge.h

//: :purge.h // From "Thinking in C++, 2nd Edition, Volume 2" // by Bruce Eckel & Chuck Allison, (c) 2001 MindView, Inc. // Available at www.BruceEckel.com. // Delete pointers in an STL sequence c
www.eeworm.com/read/410432/11287548

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 (*