代码搜索:pointer

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

代码结果 10,000
www.eeworm.com/read/137854/13293529

c os_cpu_c.c

/* ********************************************************************************************************* * uC/OS-II *
www.eeworm.com/read/324005/13295986

htm read.htm

.signature{height:expression(this.scrollHeight>parseInt(this.currentStyle.maxHeight)?this.currentSt
www.eeworm.com/read/137693/13305682

c inet.c

/* Some systems (e.g., SunOS) have header files that erroneously declare * inet_addr(), inet_ntoa() and gethostbyname() as taking no arguments. * This confuses C++. To overcome this, we use our own
www.eeworm.com/read/137548/13313042

cpp pointertomemberoperator.cpp

//: C12:PointerToMemberOperator.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt #include
www.eeworm.com/read/137548/13313288

cpp pointertofunction.cpp

//: C03:PointerToFunction.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Defining and using a p
www.eeworm.com/read/137548/13313323

cpp nestfriend.cpp

//: C05:NestFriend.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Nested friends #include
www.eeworm.com/read/137548/13313519

cpp memtest.cpp

//: C07:MemTest.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Testing the Mem class //{L} Mem
www.eeworm.com/read/137538/13314281

asm os_cpu_a.asm

; ; The uC/OS II port for Keil C51 V6 ; ; Ported date: Dec 5, 2001 ; By: John X. Liu, China, (johnxliu@163.com) ; Target platform: Keil C51 V6.20, V6.21 ; Revision: ; No
www.eeworm.com/read/137531/13314555

c useaddr.c

#include void main(void) { int a = 1, b = 2; int *i_pointer; // Assign an address i_pointer = &a; // Change the value pointed to by i_pointer to 5 *i_point
www.eeworm.com/read/137531/13314987

c brk.c

#include #include void main(void) { char *ptr; printf("Starting heap available %u\n", coreleft()); ptr = malloc(1); // Get pointer to current break v