代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/128742/14280049
c list.c
/****************************************************************************
*
* Copyright (C) 1991 Kendall Bennett.
* All rights reserved.
*
* Filename: $RCSfile: list.c $
* Version
www.eeworm.com/read/128670/14282422
plg ex6.plg
Build Log
--------------------Configuration: ex6 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\GUJIN\LOC
www.eeworm.com/read/128628/14285851
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/128628/14287250
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/128628/14287622
cpp new_far.cpp
#include
void main(void)
{
char far *pointer;
do
{
pointer = new far char[10000];
if (pointer)
cout
www.eeworm.com/read/128628/14287712
cpp no_free.cpp
#include
void main(void)
{
char *pointer;
do
{
pointer = new char[10000];
if (pointer)
cout
www.eeworm.com/read/128628/14288430
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/128452/14297653
pas fmmain.pas
unit fmMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Grids, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
www.eeworm.com/read/128452/14297938
pas sharemem.pas
{ *********************************************************************** }
{ }
{ Delphi / Kylix Cross-Platform Runtime Librar
www.eeworm.com/read/128452/14298056
pas sysinit.pas
{ *********************************************************************** }
{ }
{ Delphi / Kylix Cross-Platform Runtime Librar