代码搜索:pointer

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

代码结果 10,000
www.eeworm.com/read/120186/14811201

lst main.lst

C51 COMPILER V7.50 MAIN 12/29/2004 20:23:49 PAGE 1 C51 COMPILER V7.50, COMPILATION OF MODULE MAIN OBJECT MODULE PLACED IN MA
www.eeworm.com/read/120135/14812347

pas ufunio.pas

unit uFunIO; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs; {-----------------------------------------------------------------------------} type
www.eeworm.com/read/119982/14814744

cpp over_pt.cpp

#include int somef(int a); int somef(int a, int b); void main(void) { int (*fp)(int a); // pointer to int xxx(int) fp = somef; // points to somef(int) cout
www.eeworm.com/read/119982/14815324

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/119982/14815443

cpp new_far.cpp

#include void main(void) { char far *pointer; do { pointer = new far char[10000]; if (pointer) cout
www.eeworm.com/read/119982/14815489

cpp no_free.cpp

#include void main(void) { char *pointer; do { pointer = new char[10000]; if (pointer) cout
www.eeworm.com/read/119982/14815794

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/119787/14822394

h threadbinarytree.h

// ThreadBinaryTree.h: interface for the ThreadBinaryTree class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_THREADBINARYTREE_H__73E5ADE5_F47C_463B_
www.eeworm.com/read/119787/14822397

h binarytree1.h

// BinaryTree1.h: interface for the BinaryTree class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_BINARYTREE1_H__99C2FAA0_E42F_4CB0_8B01_C36F1FA6F1E
www.eeworm.com/read/119787/14822399

h binarysearchtree.h

// BinarySearchTree.h: interface for the BinarySearchTree class. // ////////////////////////////////////////////////////////////////////// #include "BinaryTreeNode.h" #include "BinaryTree1.h" #