代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/345247/11824148
c ex4-18.c
#include
main() {
float T[3][4]=
{
{60.1,70.3,80.5,90.7},{30.0,40.1,50.2,60.3}, {90.0,80.2,70.4,60.6}
};
float * search(float (* pointer)[4],
www.eeworm.com/read/258979/11829261
c wdmsup.c
/*++
Copyright (c) 1996 Microsoft Corporation
Module Name:
wdmsup.c
Abstract:
functions that are supported either directly on NT or by WDM on Memphis
Author:
Jim Mate
www.eeworm.com/read/258851/11837798
lst hldv12.lst
C51 COMPILER V7.06 HLDV12 10/11/2004 14:09:09 PAGE 1
C51 COMPILER V7.06, COMPILATION OF MODULE HLDV12
OBJECT MODULE PLACED IN
www.eeworm.com/read/155903/11839722
txt 例6.1.txt
例6.1 通过指针变量访问整型变量。
#include
using namespace std;
int main( )
{int a,b; //定义整型变量a,b
int *pointer_1,*pointer_2; //定义指针变量*pointer_1,*pointe
www.eeworm.com/read/155903/11839725
txt 例6.3.txt
例6.3 题目同例6.2,即对输入的两个整数按大小顺序输出。
这里用函数处理,而且用指针类型的数据作函数参数。
程序如下:
#include
using namespace std;
int main( )
{ void swap(int *p1,int *p2); //函数声明
int *pointer_1,*pointer_2,a,b; //定
www.eeworm.com/read/258784/11843426
pas system.pas
{
Anskya NoImport APISearchEngine System One By Anskya
Email:Anskya@Gmail.com
Web:Www.Anskya.Net
内存动态搜索API:LoadLibraryA
(利用用PEB获取地址kernel32.dll基址然后再用GetProcAddress搜出函数指针)
GetProcAddress
(
这个
www.eeworm.com/read/345008/11847006
h dlog4ch.h
/* ============================================================================
File name: DLOG4CH.H
Originator : Advanced Embeeded Control (AEC)
www.eeworm.com/read/155796/11847639
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/258562/11853964
f90 btree.f90
!
! 二元树排序范例
!
module typedef
implicit none
type :: data
integer :: n ! 存放的数据
integer :: repeat ! 数据重覆的次数
type(data), pointer :: left ! 左枝
type(data), pointer :: r
www.eeworm.com/read/258562/11854421
f90 ex1005.f90
program ex1005
implicit none
integer, pointer :: a(:) ! 定义a是一维的指针数组
allocate( a(5) ) ! 配置5个整数的空间给指针a
a = (/ 1,2,3,4,5 /)
write(*,*) a
deallocate( a ) ! allocate得到的内存要记得归还
stop