代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/372507/9507351
h skipnode.h
#ifndef SkipNode_
#define SkipNode_
template class SkipList;
template
class SkipNode {
friend SkipList;
private:
SkipNode(int size)
www.eeworm.com/read/175226/9555023
cpp list0802.cpp
// Listing 8.2 Using pointers
#include
typedef unsigned short int USHORT;
int main()
{
using namespace std;
USHORT myAge; // a variable
USHORT * pAge = 0;
www.eeworm.com/read/168218/9932291
h skipnode.h
#ifndef SkipNode_
#define SkipNode_
template class SkipList;
template
class SkipNode {
friend SkipList;
private:
SkipNode(int size)
www.eeworm.com/read/168218/9933630
h skipnode.h
#ifndef SkipNode_
#define SkipNode_
template class SkipList;
template
class SkipNode {
friend SkipList;
private:
SkipNode(int size)
www.eeworm.com/read/168046/9940985
h lifting53.h
# ifndef __LIFTING_5_3
# define __LIFTING_5_3
int wavelet_analysis( int * data, int n, // original data
int * approximation, // approximation coefficients
int * detail );
www.eeworm.com/read/359916/10116009
pas plugininterface.pas
unit PlugInInterface;
interface
//////////////////////////////////////
//
// InitPlugIn : String
// InitPointers (Array of pointers)
implementation
end.
www.eeworm.com/read/359581/10135206
c quotes.c
/* quotes.c -- strings as pointers */
#include
int main(void)
{
printf("%s, %p, %c\n", "We", "are", *"space farers");
return 0;
}
www.eeworm.com/read/358191/10194320
h skipnode.h
#ifndef SkipNode_
#define SkipNode_
template class SkipList;
template
class SkipNode {
friend SkipList;
private:
SkipNode(int size)
www.eeworm.com/read/356874/10219813
c quotes.c
/* quotes.c -- strings as pointers */
#include
int main(void)
{
printf("%s, %p, %c\n", "We", "are", *"space farers");
return 0;
}
www.eeworm.com/read/280765/10293292
h aduc_irq.h
/* Function Pointers for Interrupts */
typedef void (* tyVctHndlr) (void);
extern tyVctHndlr IRQ;
extern tyVctHndlr SWI;
extern tyVctHndlr FIQ;
extern tyVctHndlr UNDEF;
extern