代码搜索:地址操作
找到约 10,000 项符合「地址操作」的源代码
代码结果 10,000
www.eeworm.com/read/237869/13924655
vi 文件操作.vi
www.eeworm.com/read/235995/14037518
doc 收银操作.doc
www.eeworm.com/read/133063/14055442
txt flash操作.txt
void flash_write_BYTE(UINT PA,UCHAR PD)
{
pointer = 0x0555;
*pointer = 0xaa;
pointer = 0x02aa;
*pointer = 0x55;
pointer = 0x0555;
*pointer = 0xa0;
point
www.eeworm.com/read/132815/14072349
cpp 链表操作.cpp
//链表的插入及链表的交、并、差运算。
//其它参见"文档RTF"中的内容。
#include
#include
using namespace std;
struct NODE
{
int data;
NODE *next;
};
class LinkList
{
private:
www.eeworm.com/read/201799/15396168
doc 收银操作.doc
www.eeworm.com/read/110046/15542806
doc 操作说明.doc
www.eeworm.com/read/107624/15604607
cpp 栈操作.cpp
#include
typedef struct node {
int data;
struct node *next;
}stack;
void push(stack *&top,int);
int pop(stack *&top);
//int empstack (stack*);
void main()
{
int x=0
www.eeworm.com/read/107030/15614545
c 栈操作.c
#include
#include
#define MAX 20
#define ElemType int
#define S (*p)
struct SqStack
{
ElemType elem[MAX];
int top;
};
main()
{
struct SqStack *q;
int i,y,cord;
www.eeworm.com/read/107030/15614589
c 数组操作.c
#include
void main()
{
char strg[40],*there,one,two;
int *pt,list[100],index;
strcpy(strg,"This is a character string.");
one = strg[0]; /* one 和
www.eeworm.com/read/106883/15618619