代码搜索:ptr

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

代码结果 10,000
www.eeworm.com/read/114598/15046563

c ptr_out.c

#include void main () { int value; printf("The address of the variable value is %p\n", &value); }
www.eeworm.com/read/209853/15212901

cpp auto_ptr.cpp

//: C01:Auto_ptr.cpp // From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison. // (c) 1995-2004 MindView, Inc. All Rights Reserved. // See source code use permissions stated in the file
www.eeworm.com/read/208867/15233661

bmp varbmp_ptr.bmp

www.eeworm.com/read/207008/15284275

c ptr_chck.c

/* * Copyright (c) 1991-1994 by Xerox Corporation. All rights reserved. * * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED * OR IMPLIED. ANY USE IS AT YOUR OWN RISK. *
www.eeworm.com/read/206867/15286618

c ptr_upr.c

#include #include char *string_uppercase(char *string) { char *starting_address; starting_address = string; while (*string) toupper(*string++); re
www.eeworm.com/read/206867/15286620

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/206867/15286665

c str_ptr.c

#include void show_string(char *string) { while (*string) putchar(*string++); } void main(void) { show_string("Jamsa\'s C/C++ Programmer\'s Bible"); }
www.eeworm.com/read/206867/15286697

cpp over_ptr.cpp

#include class sample { public: int i; sample *operator->(void) {return this;} }; void main(void) { sample obj; obj->i = 10; // Same as obj.i cout
www.eeworm.com/read/206867/15286767

c ptr_out.c

#include void main(void) { int value; printf("The address of the variable value is %p\n", &value); }
www.eeworm.com/read/206867/15287173

cpp ptr_obj.cpp

#include class Base { public: void base_message(void) { cout