home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
109.lha
/
PD_C
/
examples
/
test1.c
< 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
C/C++ Source or Header
|
1986-11-20
|
241 b
|
25 lines
main()
{
long i;
short j;
char c;
i = 1;
j = 2;
c = 'a';
testit(i, j, c);
}
testit(i, j, c)
long i;
short j;
char c;
{
long k;
k = i;
k = j;
k = c;
printf("i=%ld, j=%d, c=%c\n", i, j, c);
}