代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/141724/12989094
pas jwininet.pas
unit JWinInet;
interface
uses Windows, WinInet, SysUtils;
{
JWinInet is a WinInet wrapper unit which loads the WININET.DLL at run time
rather than at load time. This means that an ap
www.eeworm.com/read/242539/13000138
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/141545/13001323
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/141545/13002634
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/141545/13002959
cpp new_far.cpp
#include
void main(void)
{
char far *pointer;
do
{
pointer = new far char[10000];
if (pointer)
cout
www.eeworm.com/read/141545/13003075
cpp no_free.cpp
#include
void main(void)
{
char *pointer;
do
{
pointer = new char[10000];
if (pointer)
cout
www.eeworm.com/read/328767/13003463
asm robot.asm
DSEG SEGMENT
ROBOT DB 7
DB 5CH,8EH,0,0
DB 08H,06H,0,1
DB 2FH,8EH,0,1
DB 0DBH,0AH,1,-1
DB 13H,7,1,0
DB 2,84H,-3,0
DB 9DH,94H,-1,0
COUNT DW 0
POINTER
www.eeworm.com/read/141545/13003892
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/242344/13013676
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/328318/13034277
h basetsd.h
/*++
Copyright (c) 1997-1998 Microsoft Corporation
Module Name:
basetsd.h
Abstract:
Type definitions for the basic sized types.
Author:
Jeff Havens (jhavens) 23-Oct