代码搜索:pointers

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

代码结果 4,056
www.eeworm.com/read/119473/14829488

asm pgm5_8.asm

; Pointers to structures ; Pointers to arrays of structures ; ; Randall Hyde .386 ;Need these two statements so we can option segment:use16 ; use 80386 register set. dseg segment pa
www.eeworm.com/read/119473/14829501

asm pgm5_2.asm

; Using Pointer Variables in an Assembly Language Program ; ; This short sample program demonstrates the use of pointers in ; an assembly language program. ; ; Randall Hyde dseg segment para
www.eeworm.com/read/116388/14976171

cpp pr06001.cpp

//////////////////////////////////////// // File Name: pr06001.cpp //////////////////////////////////////// #include //////////////////////////////////////// // The main() function.
www.eeworm.com/read/212047/15167461

todo

* Maybe the routines can be made to work with pointers instead of structs so that only pointer manipulation is done by the siman algorithm and there is no need for malloc. A call would look someth
www.eeworm.com/read/167728/5453705

todo

* Reorganize siman interfaces to allow iterative use. * Maybe the routines can be made to work with pointers instead of structs so that only pointer manipulation is done by the siman algorithm and
www.eeworm.com/read/167185/5463329

3t margindex.3t

.\" Copyright (c) 1987-1990 Entropic Speech, Inc. .\" Copyright (c) 1997 Entropic Research Laboratory, Inc. All rights reserved. .\" @(#)margindex.3t 1.4 18 Apr 1997 ESI/ERL .ds ]W (c) 1997 Entropic R
www.eeworm.com/read/156688/5609629

h start12.h

/***************************************************** start12.h - datastructures for startup ---------------------------------------------------- Copyright (c) Metrowerks, Basel, Switzer
www.eeworm.com/read/474431/6809306

c s_srch2.c

/* ** Given a pointer to a NULL-terminated list of pointers, search ** the strings in the list for a particular character. This ** version destroys the pointers so it can only be used when ** the
www.eeworm.com/read/471682/6887964

c program7_04.c

/* Program 7.4 Arrays and pointers - A simple program*/ #include int main(void) { char multiple[] = "My string"; char *p = &multiple[0]; printf("\nThe address of the first a
www.eeworm.com/read/471682/6887972

c program8_06.c

/* Program 8.6 The functional approach to string sorting */ #include #include #include #include bool str_in(const char **); /* Function pr