代码搜索:pointers

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

代码结果 4,056
www.eeworm.com/read/263232/4304678

cpp func.cpp

/* func.cpp -- A program demonstrating function pointers. */ #include void TestFunc (); int main () { void (*FunctionName)(void); FunctionName = TestFunc; Fun
www.eeworm.com/read/294235/8245400

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/171643/9744179

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/148396/12468143

s init.s

# This module initializes BSS section, stack pointers and interrupts for each mode, # and finally branches to main in the C library (which eventually calls main()). # # On reset, the ARM core star
www.eeworm.com/read/148395/12468215

s init.s

# This module initializes BSS section, stack pointers and interrupts for each mode, # and finally branches to main in the C library (which eventually calls main()). # # On reset, the ARM core star
www.eeworm.com/read/110432/15533689

c bigdynl.c

/* Chapter 12 - Program 2 */ main() { struct animal { char name[25]; char breed[25]; int age; } *pet[12], *point; /* this defines 13 pointers, n
www.eeworm.com/read/107421/15607386

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/105274/15672233

clas pdictc.clas

/* * PDictC.clas -- class definition for PDictC * * This type of dictionary stores only pointers to the keys and values * ODictC.h stores the actual keys and values */ /* Create CLASS as a
www.eeworm.com/read/388617/8595813

cpp memb_pt.cpp

// memb_pt.cpp -- dereferencing pointers to class members #include using namespace std; class Example { private: int feet; int inches; public: Example(); Example
www.eeworm.com/read/388617/8596854

cpp memb_pt.cpp

// memb_pt.cpp -- dereferencing pointers to class members #include using namespace std; class Example { private: int feet; int inches; public: Example(); Example