代码搜索:pointers

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

代码结果 4,056
www.eeworm.com/read/337096/12391988

cpp more_and.cpp

// more_and.cpp -- use logical AND operator #include const char * qualify[4] = // an array of pointers { // to strings "10,000-meter race.\n",
www.eeworm.com/read/130553/14186418

c hugeread.c

/* ** HUGEREAD.C - "Universal" PC read and write functions using huge data ** and far pointers. ** ** NOTES: ** ** 1. If these functions are called with a prototype in scope, pa
www.eeworm.com/read/130525/14188429

h webrom.h

/* Definitions for Web ROM filesystem */ /* The filesystem is in 1 or more ROMs. At the start of the first ROM is a ** directory of 1 or more filename blocks, each of which have pointers to ** da
www.eeworm.com/read/129180/14260211

h webrom.h

/* Definitions for Web ROM filesystem */ /* The filesystem is in 1 or more ROMs. At the start of the first ROM is a ** directory of 1 or more filename blocks, each of which have pointers to ** da
www.eeworm.com/read/126442/14423577

h webrom.h

/* Definitions for Web ROM filesystem */ /* The filesystem is in 1 or more ROMs. At the start of the first ROM is a ** directory of 1 or more filename blocks, each of which have pointers to ** da
www.eeworm.com/read/225430/14540929

h webrom.h

/* Definitions for Web ROM filesystem */ /* The filesystem is in 1 or more ROMs. At the start of the first ROM is a ** directory of 1 or more filename blocks, each of which have pointers to ** da
www.eeworm.com/read/224612/14580310

cpp ex4_07.cpp

// EX4_07.CPP // Initializing pointers with strings #include using namespace std; int main() { char* pstr[] = { "Robert Redford", // Initializing a pointer array
www.eeworm.com/read/123743/14614923

h webrom.h

/* Definitions for Web ROM filesystem */ /* The filesystem is in 1 or more ROMs. At the start of the first ROM is a ** directory of 1 or more filename blocks, each of which have pointers to ** da
www.eeworm.com/read/221505/14739630

h webrom.h

/* Definitions for Web ROM filesystem */ /* The filesystem is in 1 or more ROMs. At the start of the first ROM is a ** directory of 1 or more filename blocks, each of which have pointers to ** da
www.eeworm.com/read/220998/14780551

cpp hour09_1.cpp

// Listing 9.2 Using pointers #include using std::cout; // this file uses std::cout int main() { int myAge; // a variable int * pAge = 0; // a pointer --