home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource5
/
357_01
/
cstar1.exe
/
FNCALL.TST
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1991-11-15
|
161 b
|
24 lines
typedef long g();
g x
{
int x;
x = 5;
return x;
}
f2(x)
int x;
{
}
f(x)
long x;
{
return 3;
}
h()
{
int x;
f(x);
f2(x);
return;
}