代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/174714/9575808
hin august.hin
The most obscure program: Lennart Augustsson
An interesting use of a recursive call to main. Compile and execute
without args. What is the initial value of b, and does it alter t
www.eeworm.com/read/360928/10071971
java checkuseraction.java
package com;
import org.apache.struts.action.*;
import javax.servlet.http.*;
public final class CheckUserAction extends Action {
public ActionForward execute(ActionMapping mapping, ActionFor
www.eeworm.com/read/358784/10179650
asm proctble.asm
TITLE Table of Procedure Offsets (ProcTble.asm)
; This progam contains a table with offsets of procedures.
; It uses the table to execute indirect procedure calls.
; Last update: 11/4/01
www.eeworm.com/read/279572/10413573
pas teedoscommand.pas
{
this component let you execute a dos program (exe, com or batch file) and catch
the ouput in order to put it in a memo or in a listbox, ...
you can also send inputs.
the cool thing of this c
www.eeworm.com/read/159920/10589305
c bitcnt_1.c
/*
** Bit counter by Ratko Tomic
*/
int bit_count(long x)
{
int n = 0;
/*
** The loop will execute once for each bit of x set, this is in average
** twice as fast as the shift/test