代码搜索:pointers

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

代码结果 4,056
www.eeworm.com/read/113030/6142374

cpp pc5_13.cpp

// Chapter 5 of C++ How to Program // Programming Challenge 13 (Solution) #include using std::cout; using std::endl; using std::cin; #include void reverseToken
www.eeworm.com/read/175592/6341535

c pmf.c

/*************************************************************************/ /* */ /* Copyright Mentor Graphics Cor
www.eeworm.com/read/175592/6341538

c quf.c

/*************************************************************************/ /* */ /* Copyright Mentor Graphics Cor
www.eeworm.com/read/175592/6341563

c dmf.c

/*************************************************************************/ /* */ /* Copyright Mentor Graphics Cor
www.eeworm.com/read/175592/6341564

c pif.c

/*************************************************************************/ /* */ /* Copyright Mentor Graphics Cor
www.eeworm.com/read/175592/6341579

c smf.c

/*************************************************************************/ /* */ /* Copyright Mentor Graphics Cor
www.eeworm.com/read/175592/6341585

c tcf.c

/*************************************************************************/ /* */ /* Copyright Mentor Graphics Cor
www.eeworm.com/read/482832/6613996

cpp 3d1.cpp

/* NIIT 《C++ & CGI PROGRAMMING &SCRRIPTING》 Skill Base P3.15 ◆3.D.1◆ Checkup: MrZhou */ #include #include /* Define A Two Dimensional Array Of Names */ char names[
www.eeworm.com/read/482832/6614016

cc 3d1.cc

/* NIIT 《C++ & CGI PROGRAMMING &SCRRIPTING》 Skill Base P3.15 ◆3.D.1◆ Checkup: MrZhou */ #include #include /* Define A Two Dimensional Array Of Names */ char names[
www.eeworm.com/read/410432/11287542

c swap3.c

/* swap3.c -- using pointers to make swapping work */ #include void interchange(int * u, int * v); int main(void) { int x = 5, y = 10; printf("Originally x = %d and y = %d.