home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
tutorial
/
cpptutor
/
answers
/
ch01_2.cpp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1994-05-15
|
193 b
|
12 lines
// Chapter 1 - Programming exercise 2
#include <iostream.h>
main()
{
const index = 17;
volatile count;
count = index + 12;
index = count + 3;
}