代码搜索:pointer

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

代码结果 10,000
www.eeworm.com/read/315699/13537919

c zippo2.c

/* zippo2.c -- zippo info via a pointer variable */ #include int main(void) { int zippo[4][2] = { {2,4}, {6,8}, {1,3}, {5, 7} }; int (*pz)[2]; pz = zippo; print
www.eeworm.com/read/315699/13537923

c order.c

/* order.c -- precedence in pointer operations */ #include int data[2] = {100, 200}; int moredata[2] = {300, 400}; int main(void) { int * p1, * p2, * p3; p1 = p2 = data;
www.eeworm.com/read/315699/13537950

c friends.c

/* friends.c -- uses pointer to a structure */ #include #define LEN 20 struct names { char first[LEN]; char last[LEN]; }; struct guy { struct names handle; char
www.eeworm.com/read/315699/13537952

c funds2.c

/* funds2.c -- passing a pointer to a structure */ #include #define FUNDLEN 50 struct funds { char bank[FUNDLEN]; double bankfund; char save[FUNDLEN]; double sav
www.eeworm.com/read/315631/13539243

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/315631/13539392

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/315615/13539912

h _flsoc.h

/* * $Log: V:/Flite/archives/TrueFFS5/Src/_flsoc.h_V $ * * Rev 1.0 May 14 2002 14:59:48 oris * Initial revision. */ /*********************************************************
www.eeworm.com/read/315586/13540258

java list.java

package 链表的有序插入soft20new; public class List { private Node Head=null; //private Node Tail=null; private Node Pointer=null; private int Length=0; public void deleteAll() {
www.eeworm.com/read/315428/13542804

c os_mem.c

/* ********************************************************************************************************* * uC/OS-II *
www.eeworm.com/read/315239/13548215

c os_cpu_c.c

/* ********************************************************************************************************* * uC/OS-II *