home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 3
/
BBS in a box - Trilogy III.iso
/
Files
/
Prog
/
B-C
/
C++Source Code Fmtr Folder
/
Tests
/
Example.cp
< 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
|
1991-01-10
|
271 b
|
17 lines
|
[
TEXT/MPS
]
void foo(int x,
int y)
{
if (x > y)
return true;
else
// Here comes the problem, it doesn't matter what kind of compound statement
// I put here, as long as it has curly braces. This comment has not affect.
for (i = 0; i < x; i++)
{
printf(i);
}
}