代码搜索:操作软件
找到约 10,000 项符合「操作软件」的源代码
代码结果 10,000
www.eeworm.com/read/704/2468
vi 表操作.vi
www.eeworm.com/read/704/2623
vi 数组操作.vi
www.eeworm.com/read/6666/99205
xlsm 操作表.xlsm
www.eeworm.com/read/6666/99248
xlsm 文件操作.xlsm
www.eeworm.com/read/12956/268090
avi 缩放操作.avi
www.eeworm.com/read/13112/268428
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/13112/268537
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/14006/291680
txt 操作步骤.txt
1.run oc51v902a.exe
2.open Keil uVision4 on the table
3.File→License Management→copy CID
4.open KEIL_Lic.exe,paste into the CID block
5.click Generate
6.copy the License number and paste it to Li
www.eeworm.com/read/19175/821254
txt 堆栈操作 .txt
堆栈操作
PUSH direct
POP #9; direct
第一条指令称之为推入,就是将direct中的内容送入堆栈中,第二条指令称之为弹出,就是将堆栈中的内容送回到direct中。推入指令的执行过程是,首先将SP中的值加1,然后把SP中的值当作地址,将direct中的值送进以SP中的值为地址的RAM单元中。例:
MOV SP,#5FH
MOV A,#1 ...