代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/476406/6760895
f90 ex1006.f90
program ex1006
implicit none
integer, pointer :: a(:,:) ! 定义a是2维的指针数组
integer, target :: b(3,3,2)
integer i
forall( i=1:3 )
b(:,i,1)=i
b(:,i,2)=2*i
end forall
a=>b(:,:,
www.eeworm.com/read/476406/6760897
f90 ex1003.f90
program ex1003
implicit none
integer, pointer :: a=>null()
integer, target :: b=1,c=2
write(*,*) associated(a) ! FALSE, 指针a尚未指定
a=>c
write(*,*) associated(a) ! TRUE, 指针a已指定
www.eeworm.com/read/476128/6763203
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/410890/11265586
cce mainapp.cce
Warning[000] E:\TSPD.OLED.TOBC-1\source\mainApp.c 42 : illegal conversion of pointer to integer
www.eeworm.com/read/410890/11265624
cce com.cce
Warning[000] E:\TSPD.OLED.TOBC-1\source\com.c 124 : illegal conversion of integer to pointer
www.eeworm.com/read/265162/11277955
pas kpshuge.pas
{ $HDR$}
{**********************************************************************}
{ Unit archived using Team Coherence }
{ Team Coherence is Copyright 2002 by Qual
www.eeworm.com/read/265158/11279269
txt readme.txt
Instructions for ZoomIn
--------------------------
To run the ZoomIn utility, simply unzip the attached files into a
local folder and double-click ZoomIn.exe. When you run the program,
the ZoomI
www.eeworm.com/read/410505/11283056
h class.h
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// File name class.h
// Defined all clases and structur
www.eeworm.com/read/410432/11287475
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/410432/11287488
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;