代码搜索:Programs
找到约 10,000 项符合「Programs」的源代码
代码结果 10,000
www.eeworm.com/read/222769/14674538
txt read me!.txt
XTREMESCRIPT SYSTEM
GAME SCRIPTING MASTERY
-----------------------------------------------------------------------------------------------
This folder contains the complete, finished XtremeScr
www.eeworm.com/read/221024/14775918
html http:^^www.cs.wisc.edu^~cs354-2^cs354^handouts^jt-overview.html
Date: Tue, 05 Nov 1996 20:51:56 GMT
Server: NCSA/1.5
Content-type: text/html
Last-modified: Sat, 07 Sep 1996 23:29:13 GMT
Content-length: 7340
www.eeworm.com/read/118189/14883260
disclaim
/*
* Disclaimer of Warranty
*
* These software programs are available to the user without any
* license fee or royalty on an "as is" basis. The University of
* British Columbia disclaims any and
www.eeworm.com/read/216463/15006015
copyright
All program code and documentation in this directory is
copyright (c) 1995, 1996, 2000, 2001, 2006 by Radford M. Neal
Permission is granted for anyone to copy, use, modify, or distribute
these progra
www.eeworm.com/read/210671/15193618
cpp fig18_08.cpp
// Fig. 18.8: fig18_08.cpp
// An example of a union
#include
using std::cout;
using std::endl;
union Number {
int x;
double y;
};
int main()
{
Number value;
www.eeworm.com/read/210671/15193669
cpp ex03_49.cpp
// ex03_49.cpp
#include
using std::cin;
using std::cout;
int main()
{
int c;
if ( ( c = cin.get() ) != EOF ) {
main();
cout
www.eeworm.com/read/210671/15193708
cpp fig16_38.cpp
// Fig. 16.38: fig16_38.cpp
// Using memchr
#include
using std::cout;
using std::endl;
#include
int main()
{
char s[] = "This is a string";
cout
www.eeworm.com/read/210671/15193709
cpp fig16_36.cpp
// Fig. 16.36: fig16_36.cpp
// Using memmove
#include
using std::cout;
using std::endl;
#include
int main()
{
char x[] = "Home Sweet Home";
cout