代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/406395/11443594
s init.s
;Copyright Spreadtrum 2005, All rights reserved.
;2005-11-11
;
;This is the example of reset handler.
;It mainly does the flowing operations:
;1. Initializes stack pointers and interrupt for each
www.eeworm.com/read/403011/11524319
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/403011/11524445
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/403009/11524624
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/403009/11524750
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/340916/12124144
cpp ex4_07.cpp
// Ex4_07.cpp
// Initializing pointers with strings
#include
using std::cin;
using std::cout;
using std::endl;
int main()
{
char* pstr[] = { "Robert Redford", // Initiali
www.eeworm.com/read/253405/12226000
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/253405/12226005
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/253260/12234532
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/253260/12234924
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