代码搜索:pointers

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

代码结果 4,056
www.eeworm.com/read/358682/10182141

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/280836/10289673

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
www.eeworm.com/read/162078/10338391

cpp handle_exception.cpp

#include #define OUR_EXCEPTION 0xE0000001 LONG WINAPI OurUnhandledExceptionFilter(LPEXCEPTION_POINTERS lpExceptionData) { EXCEPTION_RECORD *ExceptionRecord = lpExceptionData-
www.eeworm.com/read/278099/10570385

c hugeread.c

/* +++Date last modified: 05-Jul-1997 */ /* ** HUGEREAD.C - "Universal" PC read and write functions using huge data ** and far pointers. ** ** NOTES: ** ** 1. If these functi
www.eeworm.com/read/278099/10571936

c fpswitch.c

/* +++Date last modified: 05-Jul-1997 */ /* ** FPSWITCH.C - Demonstrates using function pointers in lieu of switches */ #include /* for NULL */ /* Declare your functions he
www.eeworm.com/read/278058/10577753

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/350642/10721546

cpp handle_exception.cpp

#include #define OUR_EXCEPTION 0xE0000001 LONG WINAPI OurUnhandledExceptionFilter(LPEXCEPTION_POINTERS lpExceptionData) { EXCEPTION_RECORD *ExceptionRecord = lpExceptionData-
www.eeworm.com/read/272848/10940517

cpp unionfindwithchains.cpp

// union/find using chains and size info // integer pointers used #include #include "equivNode.h" using namespace std; equivNode *node; // array of nodes int n; // num
www.eeworm.com/read/470800/6908597

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/470800/6908885

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