代码搜索:pointers

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

代码结果 4,056
www.eeworm.com/read/442115/7659555

c iof.c

/*************************************************************************/ /* */ /* Copyright (c) 1993-2001 Accelerated
www.eeworm.com/read/435150/7796473

cpp box.cpp

// Program 11.2 Using pointers to Box objects. File: box.cpp // Defines the Box member function #include "box.h" // Box function to calculate volume double Box::volume() { return length * w
www.eeworm.com/read/199077/7889985

hpp hour12_1b.hpp

//Listing 12.1 // Passing pointers to objects // rename this file to simplecat.hpp class SimpleCat { public: SimpleCat (); // constructor SimpleCat(
www.eeworm.com/read/199075/7890412

cpp pointeruse.cpp

// Listing 9.2 Using pointers #include using std::cout; // this file uses std::cout int main() { int myAge; // a variable int * pAge = NULL; // a pointer
www.eeworm.com/read/197407/7998168

out loser2.out

Enter number of players, between 8 and 20 Enter player values The loser tree is size = 11 LowExt = 6 Offset = 15 Loser tree pointers are 2 10 7 9 4 6 8 11 1 3 5 Changed previous winner to 10, n
www.eeworm.com/read/197407/7998493

out loser.out

Enter number of players, between 8 and 20 Enter player values The loser tree is size = 11 LowExt = 6 Offset = 15 Loser tree pointers are 2 10 7 9 4 6 8 11 1 3 5 Changed previous winner to 10, n
www.eeworm.com/read/197407/7998552

h skipnode.h

#ifndef SkipNode_ #define SkipNode_ template class SkipList; template class SkipListIterator; template class SkipNode { friend
www.eeworm.com/read/397558/8038657

c iof.c

/*************************************************************************/ /* */ /* Copyright (c) 1993-2001 Accelerated
www.eeworm.com/read/296805/8076276

c pptr.c

/* pptr.c: Illustrates pointers to pointers */ #include int main() { int i = 7, *ip = &i, **ipp = &ip; printf("Address %p contains %d\n", ip, *ip); printf("Address %p con
www.eeworm.com/read/296805/8076281

htm pptr.htm

/* pptr.c: Illustrates pointers to pointers */ #include <stdio.h> int main() { int i = 7, *ip = &i, **ipp = &ip; printf("Address %p contains %d\n", ip,