代码搜索:pointer

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

代码结果 10,000
www.eeworm.com/read/316966/13513312

c 双向循环.c

#include #include typedef struct node {int data; struct node *next,*prior; }Node,*lklist,*pointer; lklist setup() {lklist head; pointer p,q; int x; head=(lklist)ma
www.eeworm.com/read/316923/13514270

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/316923/13514419

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
www.eeworm.com/read/316647/13519576

java nettest.java

package SensorNode; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.geom.Ellipse2D; import java.util.ArrayList; import javax.swing.*; import java.awt.geom.Line2D; import
www.eeworm.com/read/316519/13521620

h postfixtobtree.h

BTreeNode *PostfixToBTree(char a[]) { using std::stack; stack aStack; int i=0; //设置i来记录a串的当前值的下标 BTreeNode *pointer;//记录新建立的二叉树当前结点的指针 while (a[i]!='\0') { pointer = new B
www.eeworm.com/read/316519/13521625

cpp postfixtobtree.cpp

//将一个后缀表达式转化成二叉树的表示形式 BTreeNode *PostfixToBTree(char a[]) { using std::stack; stack aStack; int i=0; //设置i来记录a串的当前值的下标 BTreeNode *pointer;//记录新建立的二叉树当前结点的指针 while (a[i]!='\0')
www.eeworm.com/read/316094/13530302

a51 setjmp.a51

$NOMOD51 ;------------------------------------------------------------------------------ ; This file is part of the C51 Compiler package ; Copyright (c) 1988-2003 Keil Elektronik GmbH and Keil So
www.eeworm.com/read/316024/13532178

java userinfolist.java

/* * Created on 2004-12-14 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ /** * @author mq * * T
www.eeworm.com/read/315699/13537912

c sum_arr2.c

/* sum_arr2.c -- sums the elements of an array */ #include #define SIZE 10 int sump(int * start, int * end); int main(void) { int marbles[SIZE] = {20,10,5,39,4,16,19,26,31,20};
www.eeworm.com/read/315699/13537918

c pnt_add.c

// pnt_add.c -- pointer addition #include #define SIZE 4 int main(void) { short dates [SIZE]; short * pti; short index; double bills[SIZE]; double * ptf;