home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
APDL Public Domain 1
/
APDL_PD1A.iso
/
program
/
c
/
c_plus_tut
/
examp_cpp
/
ch01_2
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-04-05
|
182 b
|
12 lines
// Chapter 1 - Programming exercise 2
#include "iostream.h"
main()
{
const index = 17;
volatile count;
count = index + 12;
index = count + 3;
}