代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/334363/12608510
bmp pointer_with_box.bmp
www.eeworm.com/read/334363/12608514
bmp pointer_large.bmp
www.eeworm.com/read/334363/12608584
bmp pointer_with_database.bmp
www.eeworm.com/read/334363/12608669
bmp pointer_with_graphics.bmp
www.eeworm.com/read/247459/12658482
cpp pointer_multi.cpp
#include "stdafx.h"
#define FORMAT "%o,%o\n"
void pointerMultiArray()
{
void pointer();//声明
//pointer();//调用
/*
// 指向二维数组的二维指针
void pointerTwo();
pointerTwo();
*/
/*
//
www.eeworm.com/read/247459/12658488
cpp pointer_file.cpp
#include "stdafx.h"
struct studentinfo
{
int no; //学号
char name[15]; //姓名
float score[3]; //三门课程的成绩
float avr; //平均成绩
};
typedef studentinfo STUDENT;
// 输出单个学生的信息
void o
www.eeworm.com/read/247459/12658491
cpp pointer_fun.cpp
#include "stdafx.h"
// 定义: 一个函数在编译时被分配给一个入口地址,这个入口地址就称为函数的指针。可以用一个指针变量指向函数,然后通过该指针变量调用此函数。
// 每一个函数都占用一段内存单元,它们都有一个起始地址。因此可以使用一个指针变量指向一个函数,然后通过该指针变量调用此函数。
// 函数名代表了函数的入口地址。
// 指向函数的指针
voi ...
www.eeworm.com/read/247459/12658500
cpp pointer_array.cpp
#include "stdafx.h"
// 指向数组元素的指针
void pointerArray()
{
int array[5] = {1, 2, 3, 4, 5};
int *pointer;
pointer = &array[0]; // 将数组元素的首地址赋值给指针变量
// pointer = array; 将数组元素的首地址赋值给指针变量
// arra
www.eeworm.com/read/247459/12658517
cpp pointer_struct.cpp
#include "stdafx.h"
#include
#include
/***************************************
C 语言中的结构体,类似Java中的类 。
****************************************/
/****************
www.eeworm.com/read/201615/15400558