代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/198616/7922775
c sysfile.c
#include "calld.h"
static FILE *fpsys = NULL;
static int syslineno; /* for error messages */
static char sysline[MAXLINE];
/* can't be automatic; sys_next() returns pointers into here */
/*
*
www.eeworm.com/read/198616/7922781
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/333254/12692864
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/333254/12693194
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/332098/12779577
c sysfile.c
#include "calld.h"
static FILE *fpsys = NULL;
static int syslineno; /* for error messages */
static char sysline[MAXLINE];
/* can't be automatic; sys_next() returns pointers into here */
/*
*
www.eeworm.com/read/332098/12779582
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/331180/12840971
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/140545/13076258
cpp rawp.cpp
//: C01:Rawp.cpp
// Naked pointers
#include
using namespace std;
class Cat {
public:
Cat() { cout
www.eeworm.com/read/319883/13440527
cpp prog7_05.cpp
// Program 7.5 Sorting strings using pointers
#include
#include
using std::cout;
using std::cin;
using std::endl;
using std::string;
int main() {
string text;
www.eeworm.com/read/319883/13440533
cpp prog7_02.cpp
// Program 7.2 Exercising pointers
#include
using std::cout;
using std::endl;
int main() {
long* pnumber; // Pointer declaration
long number1 = 55L;
lo