home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
io Programmo 40
/
IOPROG_40.ISO
/
SOFT
/
NETFrameworkSDK.exe
/
comsdk.cab
/
samples1.exe
/
MyC
/
Tests
/
t07.myc
< 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
|
2000-06-23
|
213 b
|
29 lines
static int a;
void foo()
{
int b;
b = 1;
a = b;
}
void main()
{
int b;
int c;
a = 1;
b = 2;
c = (a+b)*2;
if (a < c && c > a)
{
b = 4;
}
foo();
}