代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/260597/4330776
inc pointers.inc
;***
;pointers.inc - 30-Dec-87 - pointer reference macros
;***
.XLIST
;***
;
; Copyright 1987, Microsoft Corporation
;
;Purpose:
; To provide a set of macros for pointer reference whethe
www.eeworm.com/read/260597/4331097
inc pointers.inc
;***
;pointers.inc - 30-Dec-87 - pointer reference macros
;***
IFNDEF LI_EXPAND
.XLIST
ENDIF
;***
;
; Copyright 1987, Microsoft Corporation
;
;Purpose:
; To provide a set of macros f
www.eeworm.com/read/158872/5592122
exp pointers.exp
# Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published
www.eeworm.com/read/158872/5592123
c pointers.c
#if !defined (__STDC__) && !defined (_AIX)
#define signed /**/
#endif
char v_char;
signed char v_signed_char;
unsigned char v_unsigned_char;
short v_short;
signed short v_signed_short;
unsigned
www.eeworm.com/read/135525/13924071
cpp pointers.cpp
// Chapter 3 - Program 1
#include
main()
{
int *pt_int;
float *pt_float;
int pig = 7, dog = 27;
float x = 1.2345, y = 32.14;
void *gene
www.eeworm.com/read/107207/15611872
c pointers.c
//Pointers and arrays explained
#include
#include
void cFunc(char*,char*);
void iFunc(int*);
int main()
{
int iArray[10] = {1,2,3,4,5,6,7,8,9,10};
char cArray[12]
www.eeworm.com/read/380618/9141217