代码搜索:ptr

找到约 10,000 项符合「ptr」的源代码

代码结果 10,000
www.eeworm.com/read/308995/13684554

cpp value-ptr.cpp

#include using std::ostream; using std::cout; using std::endl; #include class HasPtr { public: // no point to passing a pointer if we're going to copy it anyway //
www.eeworm.com/read/308995/13684556

cpp smart-ptr.cpp

#include using std::ostream; using std::cout; using std::endl; #include #include using std::size_t; //private class for use by HasPtr only class U_Ptr { friend
www.eeworm.com/read/308995/13684557

cpp plain-ptr.cpp

#include using std::ostream; using std::cout; using std::endl; #include // class that has a pointer member that behaves like a plain pointer class HasPtr { public: frie
www.eeworm.com/read/308995/13684560

cpp value-ptr.cpp

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that
www.eeworm.com/read/308995/13684564

cpp smart-ptr.cpp

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that
www.eeworm.com/read/308995/13684565

cpp plain-ptr.cpp

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that
www.eeworm.com/read/308670/13696918

c ptr2.c

/*-*/ /******************************************************** * Program: Array initialization * * * * Purpose: Show how to initialize an array. * * * * Usage: Run the program and
www.eeworm.com/read/308670/13696925

c ptr3.c

/*-*/ /******************************************************** * Program: Array initialization * * * * Purpose: Show how to initialize an array. * * * * Usage: Run the program and
www.eeworm.com/read/308442/13701052

c ptr_demo.c

#include void main(void) { int counter = 10; int *iptr; // Declare pointer value iptr = &counter; // Assign the address printf("Addres in iptr %x Value at
www.eeworm.com/read/308442/13701059

c ptr_upr.c

#include #include char *string_uppercase(char *string) { char *starting_address; starting_address = string; while (*string) toupper(*string++); re