代码搜索:pointer

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

代码结果 10,000
www.eeworm.com/read/447004/7560811

plg lesson.plg

礦ision3 Build Log Project: C:\Documents and Settings\Administrator\桌面\C51教程\lesson28code\lesson.uv2 Project File Date: 07/05/2006 Output: Buil
www.eeworm.com/read/446754/7566760

inc tisstimp.inc

//************************************************************************************// // File created automatically by GenerateRecords.xls // // Modified by hand
www.eeworm.com/read/446732/7569552

txt 例10.3.txt

  例10.3题目同例10.2,即对输入的两个整数按大小顺序输出。   今用函数处理,而且用指针类型的数据作函数参数。   程序如下: Swap(int *p1,int *p2)  {int temp;    temp=*p1;     *p1=*p2;    *p2=temp;    } main()    {  
www.eeworm.com/read/446701/7571039

plg ccc.plg

礦ision2 Build Log Project: C:\Documents and Settings\Administrator.LEGEND-2YHOUZTX\桌面\重要文件\重要文件\com_v1.07\新\ccc.uv2 Project File Date: 07/08/2005 Ou
www.eeworm.com/read/446646/7572957

html local.html

www.eeworm.com/read/446646/7573037

html ptrkindofary.html

www.eeworm.com/read/446646/7573039

html pass2dary.html

www.eeworm.com/read/446646/7573609

html null2.html

www.eeworm.com/read/445950/7587463

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/445950/7587612

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