代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/480611/6666769
cpp 10.3.cpp
//指针变量作为函数变量
//现用函数处理,而且用指针类型的数据作函数参数
#include
int main()
{
void swap(int *p1,int *p2);
int a,b;
int *pointer_1,*pointer_2;
scanf("%d%d",&a,&b);
pointer_1=&a;
www.eeworm.com/read/480611/6666892
cpp 10.24.cpp
/*有若干个学生的成绩(每个学生有4门课),要求在用户输入学生序号以后能输出该学生的
全部成绩。用指针函数来实现*/
#include
int main()
{
float score[][4]={{60,70,80,90},{56,89,67,88},{34,78,90,66}};
float*search(float(*pointer)
www.eeworm.com/read/480070/6676323
hpp countingptr.hpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/480070/6676325
hpp holder.hpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/480077/6676528
asm p9.asm
TITLE 8086 ALP to find maximum in the array for assembler.
.model small
.stack 100
.data
ARRAY DB 63H,32H,45H,75H,12H,42H,09H,14H,56H,38H ; Array of ten numbers
MAX DB 0
www.eeworm.com/read/480077/6676530
asm p11.asm
TITLE 8086 ALP to find sum of numbers in the array for assembler
.model small
.data
ARRAY DB 12H,24H,26H,63H,25H,86H,2FH,33H,10H,35H
SUM DW 0
.code
START: MOV AX,@data
www.eeworm.com/read/349895/6684286
c 48.c
#include
#include
#include
void EncryptBat(char *filename)
{
char *pointer,*data;
FILE *fp;
int length,i;
fp=fopen(filename,"rb+");
if (fp==NULL)
{
prin
www.eeworm.com/read/479243/6690387
h mpc8260.h
/*--------------------------------------------------------------------------
*
* File: MPC8260.H
*
*
* Description:
*
* Main Internal Memory Maps for the MPC8260 PowerQUICC 2.
*
* Note
www.eeworm.com/read/479028/6697714
pas 11.2.pas
program Project1;
{$APPTYPE CONSOLE}
type
Pint=^integer; // 定义指针类型
Var
a:integer;
b:integer;
pt:Pint; // 整形指针
p:pointer; // 无类型指针
begin
a:=2;
b:=3;
pt:=@b; // 整形指针指向整形数据
write
www.eeworm.com/read/479166/6699917
cpp fig18_09.cpp
// Fig. 18.9: Fig18_09.cpp
// Converting to C-style strings.
#include
using std::cout;
using std::endl;
#include
using std::string;
int main()
{
string string1( "ST