代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/314627/13563226
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/314452/13567241
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/314127/13574008
h mpc8260.h
/*--------------------------------------------------------------------------
*
* File: MPC8260.H
*
*
* Description:
*
* Main Internal Memory Maps for the MPC8260 PowerQUICC 2.
*
* Note
www.eeworm.com/read/314109/13574800
cpp mazepath.cpp
#include
#include
#define M 6 //迷宫的行数
#define N 6 //迷宫的列数
//0--通道;1--墙;2--入口;3--出口。 图3.4 迷宫
int maze[M][N] = { 1,2,1,1,1,1, 1,0,1,0,0,1, 1,
www.eeworm.com/read/313430/13587837
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/312649/13606611
c yynull.c
#include
#include
#ifndef EXPORT
#define EXPORT
#endif
static char rcsid[] = "$Id: yynull.c,v 1.3 2001/06/07 22:30:09 drh Exp $";
EXPORT void _YYnull(char *file, int lin
www.eeworm.com/read/312610/13607795
txt 例10.3.txt
例10.3题目同例10.2,即对输入的两个整数按大小顺序输出。
今用函数处理,而且用指针类型的数据作函数参数。
程序如下:
Swap(int *p1,int *p2)
{int temp;
temp=*p1;
*p1=*p2;
*p2=temp;
}
main()
{
www.eeworm.com/read/312169/13616918
cpp pointerstore.cpp
// Listing 9.3 What is stored in a pointer.
#include
int main()
{
unsigned short int myAge = 5, yourAge = 10;
unsigned short int * pAge = &myAge; // a pointer
www.eeworm.com/read/311844/13624915
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/311699/13626940
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*