代码搜索:pointers

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

代码结果 4,056
www.eeworm.com/read/271450/10994421

cpp nudep.cpp

//: C23:Nudep.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Naked pointers #include
www.eeworm.com/read/271450/10994578

cpp pmem2.cpp

//: C11:Pmem2.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Pointers to members #includ
www.eeworm.com/read/446736/7567337

c mysvd.c

#include #include #include #include "matlab.h" static double data[] = { 21, 3, 15, 57, 12, 83, 6, 90 }; void mysvd() { /* Initialize pointers to array ar
www.eeworm.com/read/446736/7567341

cpp mysvd1.cpp

#include #include #include #include "matlab.h" static double data[] = { 21, 3, 15, 57, 12, 83, 6, 90 }; void mysvd() { /* Initialize pointers to array ar
www.eeworm.com/read/443686/7628283

cpp simplestruct3.cpp

//: C03:SimpleStruct3.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Using pointers to structs
www.eeworm.com/read/443686/7628441

cpp voidrtti.cpp

//: C08:Voidrtti.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // RTTI & void pointers #include
www.eeworm.com/read/443686/7628654

cpp wrapped.cpp

//: C07:Wrapped.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Safe, atomic pointers #include
www.eeworm.com/read/443686/7628657

cpp nudep.cpp

//: C07:Nudep.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Naked pointers #include
www.eeworm.com/read/435150/7796475

cpp prog11_02.cpp

// Program 11.2 Using pointers to Box objects File: prog11_02.cpp #include #include "box.h" using std::cout; using std::endl; int main() { Box aBox = { 10, 20, 30 }; Box* pBox
www.eeworm.com/read/146114/12670482

h vlist.h

#ifndef VLIST_H #define VLIST_H #include /* A single list item. */ struct vlist_i { /* The item's data. */ void *data; /* Pointers to previous and next items */ struct vlist_