代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/192259/8390945
c dialfile.c
#include "calld.h"
static FILE *fpdial = NULL;
static int diallineno; /* for error messages */
static char dialline[MAXLINE];
/* can't be automatic; dial_next() returns pointers into here */
www.eeworm.com/read/192259/8390965
c devfile.c
#include "calld.h"
static FILE *fpdev = NULL;
static int devlineno; /* for error messages */
static char devline[MAXLINE];
/* can't be automatic; dev_next() returns pointers into here */
www.eeworm.com/read/391405/8405130
cpp hook.cpp
#include "posturl.h"
#include "code.h"
#include "sockstrs.h"
// Function pointers to the Debug/Trace DLL entry points
static LPFNWSANOTIFY PreApiNotifyFP = NULL;
static LPFNWSANOTIFY PostApiNo
www.eeworm.com/read/191613/8426371
cpp ex0707.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Example 7.7 on page 160
// Dereferencing pointers
#include
using namespace std;
i
www.eeworm.com/read/191613/8426566
cpp ex1012.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Example 10.12 on page 244
// Pointers to objects
#include
using namespace std;
cl
www.eeworm.com/read/189219/8484015
c dialfile.c
#include "calld.h"
static FILE *fpdial = NULL;
static int diallineno; /* for error messages */
static char dialline[MAXLINE];
/* can't be automatic; dial_next() returns pointers into here */
/*
www.eeworm.com/read/388617/8595064
cpp sayings2.cpp
// sayings2.cpp -- using pointers to objects
// compile with string1.cpp
#include
#include // (or stdlib.h) for rand(), srand()
#include // (or time.h) for
www.eeworm.com/read/388617/8595562
cpp fun_ptr.cpp
// fun_ptr.cpp -- pointers to functions
#include
double betsy(int);
double pam(int);
// second argument is pointer to a type double function that
// takes a type int argument
void e
www.eeworm.com/read/388617/8596192
cpp sayings2.cpp
// sayings2.cpp -- using pointers to objects
// compile with string1.cpp
#include
#include // (or stdlib.h) for rand(), srand()
#include // (or time.h) for
www.eeworm.com/read/388617/8596591
cpp fun_ptr.cpp
// fun_ptr.cpp -- pointers to functions
#include
double betsy(int);
double pam(int);
// second argument is pointer to a type double function that
// takes a type int argument
void e