代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/252679/12268871
h unixlike.h
/*
Copyright (c) 1990-1999 Info-ZIP. All rights reserved.
See the accompanying file LICENSE, version 1999-Oct-05 or later
(the contents of which are also included in zip.h) for terms of use.
www.eeworm.com/read/250392/12409462
txt sqlstr.txt
select * from student where 专业=m_editzy AND 学号=m_editid AND 姓名=m_editname
SQL常用妙语
1. 查询
1)单类型:
select * from news
select top 10 * from news /显示最前面的10条记录
select top 10
www.eeworm.com/read/148696/12443078
c item.c
#include
void main(void)
{
int counter = 1; // Initialize the control variable
while (counter
www.eeworm.com/read/131670/14133532
c shell.c
/*
* 这个 shell 是 UNIX v6 的 sh 在 POSIX 环境下的重新实现。
* UNIX v6 是受 BSD 许可证保护的自由软件,其中 sh 的原作者是 Ken Thompson。
* 余对这个 shell 的语法做了细微修改,对代码做了注释和重写。
* 余对这个程序和相关文档不做任何担保,放弃一切权利,不承担任何责任和义务。
*
* 最近的修订∶ 20 ...
www.eeworm.com/read/232704/14184916
c simpleeng.c
/*necessory header file*/
#include "engine.h"
#include "stdio.h"
#include "conio.h"
#define BUFFERLEN 256
/*main function*/
void main()
{
Engine *ep;
char cmd[BUFFERLEN];
int i=0