代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/450232/7487496
dfm unit12.dfm
object Day_curve: TDay_curve
Left = 13
Top = -6
Width = 799
Height = 599
Caption = 'Day_curve'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Fon
www.eeworm.com/read/449965/7493015
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/449910/7494185
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/449530/7501227
c sum_arr2.c
/* sum_arr2.c -- sums the elements of an array */
#include
#define SIZE 10
int sump(int * start, int * end);
int main(void)
{
int marbles[SIZE] = {20,10,5,39,4,16,19,26,31,20};
www.eeworm.com/read/449530/7501233
c pnt_add.c
// pnt_add.c -- pointer addition
#include
#define SIZE 4
int main(void)
{
short dates [SIZE];
short * pti;
short index;
double bills[SIZE];
double * ptf;
www.eeworm.com/read/449530/7501234
c zippo2.c
/* zippo2.c -- zippo info via a pointer variable */
#include
int main(void)
{
int zippo[4][2] = { {2,4}, {6,8}, {1,3}, {5, 7} };
int (*pz)[2];
pz = zippo;
print
www.eeworm.com/read/449530/7501238
c order.c
/* order.c -- precedence in pointer operations */
#include
int data[2] = {100, 200};
int moredata[2] = {300, 400};
int main(void)
{
int * p1, * p2, * p3;
p1 = p2 = data;
www.eeworm.com/read/449530/7501265
c friends.c
/* friends.c -- uses pointer to a structure */
#include
#define LEN 20
struct names {
char first[LEN];
char last[LEN];
};
struct guy {
struct names handle;
char
www.eeworm.com/read/449530/7501267
c funds2.c
/* funds2.c -- passing a pointer to a structure */
#include
#define FUNDLEN 50
struct funds {
char bank[FUNDLEN];
double bankfund;
char save[FUNDLEN];
double sav
www.eeworm.com/read/449323/7508809
c os_sem.c
/*
*********************************************************************************************************
* uC/OS-II
*