代码搜索:Programs
找到约 10,000 项符合「Programs」的源代码
代码结果 10,000
www.eeworm.com/read/364910/9888292
c win.c
/************************************************************************
*
* win.c, display routines for Win32 for tmndecode (H.263 decoder)
*
*************************************
www.eeworm.com/read/364700/9898002
pc readme.pc
MPEG2DEC.EXE / MPEG2ENC.EXE
===========================
MPEG-2 Encoder / Decoder, Version 1.1, June 1994
www.eeworm.com/read/167847/9950104
readme
Not all of the tests in this directory run on all systems.
First execute "make clean" and then build all the programs that will
compile: "make -i". You will get an error for every program that w
www.eeworm.com/read/355161/10289969
doc utility.doc
Program : List
Author : Steve Dee
Language : Microsoft C 4.0
Version : 2.0 created November 1986
Notes:
List will produce formatted hardcopy output of text files.
The use of the wildcard
www.eeworm.com/read/279234/10452437
pl fig18_12.pl
#!/usr/bin/perl
# Fig. 18.12: fig18_12.pl
# Using open to fork and filter output.
use warnings;
use strict;
$| = 1;
if ( my $pid = open( CHILD, "-|" ) ) {
my $i;
while (
www.eeworm.com/read/279234/10452484
pl fig04_03.pl
#!/usr/bin/perl
# # Fig. 4.3: fig04_03.pl
# Looping through an array with the for repetition structure.
@array = ( "Hello", 283, "there", 16.439 );
# display every element of the array
for (
www.eeworm.com/read/279234/10452530
pl fig04_02.pl
#!/usr/bin/perl
# Fig. 4.2: fig04_02.pl
# Creating and initializing an array with list assignment.
@array = ( "Hello", 283, "there", 16.439 );
# display every element of the array
$i = 0;
www.eeworm.com/read/279234/10452538
pl fig03_05.pl
#!/usr/bin/perl
# Fig. 3.5: fig03_05.pl
# Using the do/while repetition structure
$counter = 1;
do
{
print "$counter ";
} while ( ++$counter
www.eeworm.com/read/279234/10452541
pl fig03_06.pl
#!/usr/bin/perl
# Fig. 3.6: fig03_06.pl
# Using the do/until repetition structure
$counter = 10;
do
{
print "$counter ";
} until ( --$counter == 0 );
print "\n";
#############